java 中利用io流将一个文件插入到另一个文件中的指定位置,指定位置

it菜鸟
2024-12-19 17:48:22
推荐回答(3个)
回答1:

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

回答2:

百度一下 很简单 懒得写了

回答3:

这个不可能,只能把两个文件都读取出来,和并成一个在输出。