若存在将两个文本文件“1.txt”和“2.txt”的内容读入并写在一个“3.txt”文件中

用java语言编写... 用java语言编写 展开
 我来答
tcl203
2012-10-30 · TA获得超过392个赞
知道小有建树答主
回答量:317
采纳率:88%
帮助的人:266万
展开全部
JAVA的问题干嘛发C/C++这边额 = =
-----------------------华丽的分割线-----------------------------
File srcFile1 = new File("1.txt");
File srcFile2 = new File("2.txt");
File destFile = new File("3.txt");

if (destFile.exists()) {
destFile.delete();
destFile.createNewFile();
} // 如果不希望覆盖原文件,就不要上面这步

FileInputStream in = null;
FileOutputStream out = null;
try {
out = new FileOutputStream(destFile);
int byteRead = 0;
byte[] buffer = new byte[100]; //这里的100是每次读多大的数据,随便定

in = new FileInputStream(srcFile1);
while ((byteRead = in.read(buffer)) != -1) {
out.write(buffer, 0, byteRead);
}
in.close();

in = new FileInputStream(srcFile2);
while ((byteRead = in.read(buffer)) != -1) {
out.write(buffer, 0, byteRead);
}

out.flush();
} catch (IOException e) {
e.printStachTrace();
} finally {
if (in != null) {
in.close();
in = null;
}

if (out != null) {
out.close();
out = null;
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式