JAVA高手请进!求一个JAVA程序:将一个文件中的内容复制到另一个文件中。

 我来答
长师发贴专用号
推荐于2018-04-13 · TA获得超过649个赞
知道小有建树答主
回答量:358
采纳率:0%
帮助的人:0
展开全部
最简单的io流问题,不用什么高手,

我给你写个方法,参数是2个字符串,第一个写原文件的全路径,第二个写目标文件的全路进。 你试试吧

public void copy(String fromFilePath, String toFilePath) {

try {

FileInputStream fis = new FileInputStream(fromFilePath);

FileOutputStream fos = new FileOutputStream(toFilePath);

byte[] b = new byte[100];

try {
while (fis.read(b) != (-1)) {

fos.write(b);
}

if (fis != null) {

fis.close();
fis = null;
}
if (fos != null) {
fos.flush();
fos.close();
fos = null;

}
} catch (IOException e) {

System.out.println("io异宴改常");
}

} catch (FileNotFoundException e) {

System.out.println("源文件不存在");

}

public static void main(String[] args) {

//自己把路径补齐,别忘了!!!!!!!!!晌渗判!!!!!!!

String fromFilePath=" "; // 源文件的全路径。 比方"d://myphoto//nihao.mp3"

String toFilePath=" "; //目标文件的全路劲。 如果不存在会自动喊凯建立,如存在则在文件尾继续添加

new CopyTest().copy(fromFilePath, toFilePath);

}

}
东桖柳83
2008-10-16 · TA获得超过599个赞
知道小有建树答主
回答量:603
采纳率:0%
帮助的人:375万
展开全部
将"中国农民贫穷的真正原因.txt"复制到("d:/MYJAVADemo/fileCopyDemo.txt"
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;

public class FileCopyDemo {

public static void main(String[] args) {
File dir = new File("d:/毕槐辩明辩MYJAVADemo/");
if (dir.exists()) {
System.out.println("目录己经存在: ");
} else {
if (dir.mkdirs()) {
System.out.println("目录生创建成功: ");
} else {
System.out.println("目录生成失败,系统异常退出: ");
System.exit(1);
}
}

File file = new File(dir, "fileCopyDemo.txt");
File file1 = new File(dir, "中国农民贫穷的真正原因.txt");
FileOutputStream fos = null;
FileInputStream fis = null;
try {
fos = new FileOutputStream(file);
fis = new FileInputStream(file1);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
FileChannel filechannel1 = fos.getChannel();
FileChannel filechannel2 = fis.getChannel();

try {
filechannel1.transferFrom(filechannel2, 0, filechannel2.size());
//注意这个方法,输出文件管道向输入文件管道读取数据;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
if (filechannel1 != null) {
try {
filechannel1.close();
} catch (IOException e) {
//手缺 TODO Auto-generated catch block
e.printStackTrace();
}
}
if (filechannel2 != null) {
try {
filechannel2.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友64704c542
2008-10-16 · TA获得超过296个赞
知道小有建树答主
回答量:747
采纳率:0%
帮助的人:0
展开全部
用记事本打开,复制到另一个文件中。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
maidong660
2019-05-13
知道答主
回答量:11
采纳率:0%
帮助的人:2.8万
展开全部
FileChannel inchannel=FileChannel.open(Paths.get("1.mkv"), StandardOpenOption.READ);
FileChannel outchannel=FileChannel.open(Paths.get("2.mkv"), StandardOpenOption.WRITE,StandardOpenOption.CREATE);
inchannel.transferTo(0, inchannel.size(), outchannel);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式