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

it菜鸟... it菜鸟 展开
 我来答
小童鞋_成er
推荐于2016-11-26 · 知道合伙人数码行家
小童鞋_成er
知道合伙人数码行家
采纳数:4650 获赞数:22879
主要从事J2EE工作,热爱Java,用心讨论技术,共同进步。

向TA提问 私信TA
展开全部
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

盖饭英雄王
2014-08-11
知道答主
回答量:43
采纳率:100%
帮助的人:15.7万
展开全部
百度一下 很简单 懒得写了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tds411255224
2014-08-11 · 超过17用户采纳过TA的回答
知道答主
回答量:66
采纳率:0%
帮助的人:30万
展开全部
这个不可能,只能把两个文件都读取出来,和并成一个在输出。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式