How can I convert my Map
byte[]
, and then write it to internal storage? I currently have:
try {
Using serialization in java you can easily parse any serializable objects to byte stream. Try to use the ObjectInputStream and the ObjectOuputStream.
Use json to restore. You can use google-gson to convert Java objects to JSON and vice-versa.
Use Parcel in android. The class android.os.Parcel is designd to pass data between the components in android(activity, service), but you can still use it to do data persistence. Just remember do not send the data to internet since differenct platforms may have different algorithm to do parsing.
I wrote a demo for serialization , have a try.
public static void main(String[] args) throws Exception {
// Create raw data.
Map data = new HashMap();
data.put(1, "hello");
data.put(2, "world");
System.out.println(data.toString());
// Convert Map to byte array
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream(byteOut);
out.writeObject(data);
// Parse byte array to Map
ByteArrayInputStream byteIn = new ByteArrayInputStream(byteOut.toByteArray());
ObjectInputStream in = new ObjectInputStream(byteIn);
Map data2 = (Map) in.readObject();
System.out.println(data2.toString());
}