3个回答
推荐于2016-11-26 · 知道合伙人数码行家
关注
展开全部
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
public class Demo {
public static void main(String[] args) throws Exception{
String text = getReader("D:\\1.txt");
getWriter("D:\\2.txt",text,2,1);
}
/**
* @param pathName : 源文件路径
**/
private static String getReader(String pathName)throws Exception{
File file = new File(pathName);
if(!file.exists())
throw new RuntimeException("文件不存在!");
BufferedReader fr = new BufferedReader(new FileReader(file));
StringBuilder sb = new StringBuilder();
String str = null;
while((str=fr.readLine())!=null){
sb.append(str+"\r\n");
}
fr.close();
return sb.toString();
}
/**
* @param pathName : 要copy的文件路径
* @param text : 叠加的内容
* @param x : 行,从0开始
* @param y : 列,从0开始
**/
private static void getWriter(String pathName,String text,int x, int y)throws Exception{
File file = new File(pathName);
if(!file.exists())
throw new RuntimeException("文件不存在!");
BufferedReader fr = new BufferedReader(new FileReader(file));
StringBuilder sb = new StringBuilder();
for(int i = 0; i < x; i++){
sb.append(fr.readLine()+"\r\n");
}
for(int i = 0; i < y; i++){
sb.append((char)fr.read());
}
sb.append(text);
String str = null;
while((str=fr.readLine())!=null){
sb.append(str);
}
fr.close();
FileWriter fw = new FileWriter(file);
fw.write(sb.toString());
fw.close();
}
}
//测试文件1.txt内容:
asd
sss
aaa
//测试文件2.txt内容:
111
222
3asd
sss
aaa
33
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询