This is a continuation of my previous question (found here ). So far, my property files are made up of simple key-value pairs such as ints and Strings. Now I would like to use it to place more complex structures in it, in particular, I need a map <A, Integer>, where A is the class that I defined, for example:
foo=bar,5;baz,10
Is it possible? If so, how should I format the file and analyze the card, respectively?
Are there perhaps better ways to solve this problem?
source
share