Answer the question
In order to leave comments, you need to log in
How to save to file and read HashMap in ANDROID?
Good day to all!
How can I save the List<Map<String, String>> (written in Russian, otherwise it will not be displayed) to a file, and then read it from there?
Thanks in advance for your replies
Answer the question
In order to leave comments, you need to log in
Alternatively, you can simply write to a file:
File file = new File(*ваши данные*);
ObjectOutputStream outputStream = new ObjectOutputStream(new FileOutputStream(file));
outputStream.writeObject( yourObject );
outputStream.flush();
outputStream.close();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question