首页 > 编程语言 > 详细

Java中实现文件复制(servlet)

时间:2014-09-04 10:34:49      阅读:243      评论:0      收藏:0      [点我收藏+]
String filePath = request.getParameter("filePath");
filePath = request.getServletContext().getRealPath("/") + filePath;
String targetPath = request.getParameter("target");
File file = new File(filePath);
FileInputStream in = new FileInputStream(file);


FileOutputStream out = new FileOutputStream(targetPath + "/"
+ file.getName());


int c;
byte buffer[] = new byte[1024];
while ((c = in.read(buffer)) != -1) {
for (int i = 0; i < c; i++)
out.write(buffer[i]);
}


in.close();
out.close();

Java中实现文件复制(servlet)

原文:http://blog.csdn.net/menghuannvxia/article/details/39048277

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!