私は形状の配列を持っています:
Shape[] myshape = new Shape[13];
どうすればファイルに保存できますか?
私はいくつかのコードを見つけました:
String fileName = "file.test";
BufferedOutputStream bs = null;
try {
FileOutputStream fs = new FileOutputStream(new File(fileName));
bs = new BufferedOutputStream(fs);
bs.write(byte_array);
bs.close();
bs = null;
} catch (Exception e) {
e.printStackTrace()
}
if (bs != null) try { bs.close(); } catch (Exception e) {}
しかし、コードはバイト配列に対してのみ機能します。誰か助けてもらえますか?