我想将我的值存储为文本文件,因此我使用了
try
{
File Mydir = new File("/sdcard/app/");
Mydir.mkdirs();
File outputFile = new File(Mydir, "helloworld");
FileOutputStream fos = new FileOutputStream(outputFile);
fos.write(item1.getBytes());
fos.write(item2.getBytes());
// Close output stream
fos.flush();
fos.close();
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
这工作得非常好,并且值正在正确存储。但现在我的问题是我想将大量值存储在一个文件中,并且我想以表格格式存储这些值。此处的值已超过上面写入的值,并且仅显示最后使用的值。因此,我想以表格格式存储所有使用的值,而不是这个。