从 Android 中有换行符的文本文件读取时数据丢失
Data missing when read from text file with line breaks in Android
我有三个字符串,用这段代码写入 list.txt 文件
String filepath = Environment.getExternalStorageDirectory().getPath();
String filename=filepath+"/" + FOLDER + "/" + "list.txt" ;
FileOutputStream fop = null;
File file = null;
try {
file =new File(filename);
fop=new FileOutputStream(file,true);
// if file doesn't exists, then create it
if (!file.exists()) {
file.createNewFile();
}
filecontent=filecontent+ System.getProperty ("line.separator");
// get the content in bytes
byte[] contentInBytes = filecontent.getBytes();
fop.write(contentInBytes);
fop.flush();
fop.close();
} catch (IOException e) {
e.printStackTrace();
}
文件输出详细信息为
abc.mp3
cde.mp3
edf.mp3
现在,我想阅读 list.txt
中的详细信息。我使用了下面的代码,但输出只有
cde.mp3
edf.mp3
我的代码出了什么问题?我不知道为什么数据 abc.mp3
消失了。
ArrayList<String> data;
try {
String filepath = Environment.getExternalStorageDirectory().getPath();
String filename=filepath+"/" + FOLDER + "/" + "list.txt" ;
BufferedReader in = new BufferedReader(new FileReader(filename));
String audio_name;
audio_name = in.readLine();
data = new ArrayList<String>();
while ((audio_name = in.readLine()) != null) {
data.add(audio_name);
}
in.close();
} catch (IOException e) {
System.out.println("File Read Error");
}
for (int i=0;i<data.size();i++)
{
Log.d("D",String.valueOf(data.get(i)));
}
audio_name = in.readLine()
的第一个实例将读取第一行 abc.mp3
但未使用输入。因此,您的 while
循环读取并存储在 data
中的第一行将是 cde.mp3
。您应该删除 audio_name = in.readLine()
.
的第一个实例
audio_name = in.readLine();
data = new ArrayList<String>();
您将第一行读入了 audio_name 变量,但从未将其添加到列表中,所以这就是 "missing".
的原因
我有三个字符串,用这段代码写入 list.txt 文件
String filepath = Environment.getExternalStorageDirectory().getPath();
String filename=filepath+"/" + FOLDER + "/" + "list.txt" ;
FileOutputStream fop = null;
File file = null;
try {
file =new File(filename);
fop=new FileOutputStream(file,true);
// if file doesn't exists, then create it
if (!file.exists()) {
file.createNewFile();
}
filecontent=filecontent+ System.getProperty ("line.separator");
// get the content in bytes
byte[] contentInBytes = filecontent.getBytes();
fop.write(contentInBytes);
fop.flush();
fop.close();
} catch (IOException e) {
e.printStackTrace();
}
文件输出详细信息为
abc.mp3
cde.mp3
edf.mp3
现在,我想阅读 list.txt
中的详细信息。我使用了下面的代码,但输出只有
cde.mp3
edf.mp3
我的代码出了什么问题?我不知道为什么数据 abc.mp3
消失了。
ArrayList<String> data;
try {
String filepath = Environment.getExternalStorageDirectory().getPath();
String filename=filepath+"/" + FOLDER + "/" + "list.txt" ;
BufferedReader in = new BufferedReader(new FileReader(filename));
String audio_name;
audio_name = in.readLine();
data = new ArrayList<String>();
while ((audio_name = in.readLine()) != null) {
data.add(audio_name);
}
in.close();
} catch (IOException e) {
System.out.println("File Read Error");
}
for (int i=0;i<data.size();i++)
{
Log.d("D",String.valueOf(data.get(i)));
}
audio_name = in.readLine()
的第一个实例将读取第一行 abc.mp3
但未使用输入。因此,您的 while
循环读取并存储在 data
中的第一行将是 cde.mp3
。您应该删除 audio_name = in.readLine()
.
audio_name = in.readLine();
data = new ArrayList<String>();
您将第一行读入了 audio_name 变量,但从未将其添加到列表中,所以这就是 "missing".
的原因