Bundle bundle;
//set data to bundle
//......
File file = new File(context.getFilesDir().getAbsolutePath() + "/data/");
FileOutputStream fos;
try {
fos = new FileOutputStream(file);
//fos.write
fos.close();
} catch (FileNotFoundException exp1) {
exp1.printStackTrace();
} catch ( IOException exp2) {
exp2.printStackTrace();
}
I have the aforementioned code. All I want to do is to save the bundle to the file. I found the method write but I can't pass there a bundle but only a byte[].I tried to convert the bundle to byte[] but I didn't succeed it. What Should I do to make this work? What is the most efficient way?
