我的应用程序录制声音。录制声音后,会要求用户输入新的文件名。现在我接下来要做的是将所有文件名添加到文本文件中,以便以后可以将其作为数组读取以创建列表视图。
这是代码:
//this is in onCreate
File recordedFiles = new File(externalStoragePath + File.separator + "/Android/data/com.whizzappseasyvoicenotepad/recorded files.txt");
if(!recordedFiles.exists())
{
try {
recordedFiles.createNewFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//this executes everytime text is entered and the button is clicked
try {
String content = input.getText().toString();
FileWriter fw = new FileWriter(recordedFiles.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
bw.write(">" + content + ".mp3");
bw.close();
} catch (IOException e) {
e.printStackTrace();
}
现在的问题是,每次我录制一个新文件时,前一行都会被覆盖。所以如果我记录两个文件'text1'和'text2',在我记录了text1之后,txt文件会显示text1,但是在我记录了text2之后,text2会覆盖text1而不是插入一个新行。
我尝试添加:
bw.NewLine()
前
bw.write(">" + content + ".mp3");
但它不起作用。
如果我录制三个声音并将它们命名为 sound1、sound2 和 sound3,我希望得到这样的结果:
>sound1
>sound2
>sound3