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メソッドを見つけましたが、バンドルを渡すことができず、byte []のみです。バンドルをbyte[]に変換しようとしましたが、成功しませんでした。これを機能させるにはどうすればよいですか?最も効率的な方法は何ですか?