public static void main(String[] args) throws IOException {
// 使用字符流显示一个文本文件
InputStreamReader in = new InputStreamReader(new FileInputStream(
"folder/个人信息(复制).txt"));
int a;
while ((a = in.read()) != -1) {
System.out.print((char)a);
}
OutputStreamWriter ut=new OutputStreamWriter(new FileOutputStream("folder/个人信息.txt"));
ut.write("性别:男");
ut.close();
in.close();
}
这段代码是使用输入流在一个文件中,写入信息!!我的问题是可不可以在指定的行 把 "性别:男" 添加进去?该如何实现??不可以请说一下原因????
|
|