JAVA 把指定的文件 复制到目标文件夹下 怎么写啊?

比如把D:\我的文档\MyPictures\1.jpg复制到D:\我的文档\test这个文件夹中。... 比如把 D:\我的文档\My Pictures\1.jpg 复制到 D:\我的文档\test 这个文件夹中。 展开
 我来答
圣鸾OJ
2015-09-30 · TA获得超过1629个赞
知道小有建树答主
回答量:1136
采纳率:96%
帮助的人:114万
展开全部
// 由绝对路径得到输出流
//path源路径
//fileCopeToPath 目标路径
String path="D:\我的文档\My Pictures\1.jpg ";
String fileCopeToPath=" D:\我的文档\test ";
File file =new File(path);
if(file.exists){
FileInputStream fis = new FileInputStream(file);
FileOutputStream fos= new FileOutputStream( fileCopeToPath+ File.separator +path.subString(path.lastIndexOf("/\"),path.length));
byte[] b = new byte[fis.available()];
int len = 0;
while ((len = fis.read(b)) != -1)
{
fos.write(b, 0, len);
fos.flush();
}
fos.close();
fis.close();
}
zz270564642
2011-06-21 · TA获得超过238个赞
知道小有建树答主
回答量:342
采纳率:0%
帮助的人:173万
展开全部
// 由绝对路径得到输出流
//path源路径
//fileCopeToPath 目标路径
String path="D:\我的文档\My Pictures\1.jpg ";
String fileCopeToPath=" D:\我的文档\test ";
File file =new File(path);
if(file.exists){
FileInputStream fis = new FileInputStream(file);
FileOutputStream fos= new FileOutputStream( fileCopeToPath+ File.separator +path.subString(path.lastIndexOf("/\"),path.length));
byte[] b = new byte[fis.available()];
int len = 0;
while ((len = fis.read(b)) != -1)
{
fos.write(b, 0, len);
fos.flush();
}
fos.close();
fis.close();
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友a365238
2011-06-21 · TA获得超过153个赞
知道答主
回答量:55
采纳率:0%
帮助的人:28.7万
展开全部
try {
InputStream in = new FileInputStream(new File("D:\我的文档\My Pictures\1.jpg"));
OutputStream out = new FileOutputStream(new File("D:\我的文档\test\1.jpg"));
byte[] b = new byte[100];
while (in.read(b) != -1) {
out.write(b);
}
in.close();
out.flush();
out.close();

} catch (Exception e) {
e.printStackTrace();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式