android在.txt文件的开头添加文本行

时间:2012-12-11 15:51:49

标签: java android

我有这段代码

 File gpxfile = new File(root, "mesaje.txt");

            BufferedWriter bW;

            bW = new BufferedWriter(new FileWriter(gpxfile, true));
            bW.write(format + " " + message + "\n-----------------------\n");
            bW.newLine();
            bW.flush();
            bW.close();

它写一个.txt文件,在最后一行之后添加文本。我想在第一行添加文本,以便它显示为最新信息。我怎样才能做到这一点?谢谢!

1 个答案:

答案 0 :(得分:0)

读取文件,将其存储到字符串中。然后只需通过添加新文本然后从先前文件保存的字符串重写文件。 这里有很多关于阅读文本文件的例子