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();
}
我有上述代码。我要做的就是将捆绑包保存到文件中。我找到了 write 方法,但我不能传递一个包,而只能传递一个字节 []。我试图将包转换为字节 [],但我没有成功。我应该怎么做才能使这项工作?最有效的方法是什么?