标题:将数据写入文件中的特定行号
这是我的示例文件:
public class MyC{
public void MyMethod()
{
System.out.println("My method has been accessed");
Syst.out.println("hi");
String l;
nt x=0;
}
}
我的目标是什么?
我想转到第 5 行并更正字符串 Syst.out.println("hi"); 到 System.out.println("hi"); 到目前为止,我已经能够访问有错误的行并将字符串保存在变量中并替换错误。
这是我到目前为止所取得的成就:
import java.io.*;
public class NewReplaceLine {
public static void main(String[] args)
{
FileInputStream fs = null;
try {
fs = new FileInputStream("C:\\Users\\workspace\\Compilers\\testfile.txt");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
BufferedReader br = new BufferedReader(new InputStreamReader(fs));
for(int i = 0; i < 6; ++i)
try {
br.readLine();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
String lineIWant = br.readLine();
String newtext = lineIWant.replace("Syst", "System");
System.out.println(newtext);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
我无法做的是将我更正为第 5 行的字符串重写回文件。谢谢