I need to save an arraylist of hashmaps to an external file. I can use any format expect for a text file, because the program is set to ignore text files (specially, anything with a .txt extension). The hashmaps are pretty straightforward, just words with counts of those words. What is the ideal file format to store this in?
I need to save an arraylist of hashmaps to an external file. I can
Share
You could use
java.util.Properties.You can read it later by
See also: