我有一个文本文件,我从中读取了BufferedReader。
String sCurrentLine;
File myFile = new File("/sdcard/file.txt");
BufferedReader buf = new BufferedReader(new FileReader(myFile));
while ((sCurrentLine = buf.readLine()) != null) {
}
我想要做的是读取一个特定的行,然后用其他东西替换它,同时留下文件的其余部分。我该怎么做?
答案 0 :(得分:2)
file.txt
,将输出写入临时文件,并根据需要进行替换