码迷,mamicode.com
首页 > 编程语言 > 详细

Java中实现文件复制(servlet)

时间:2014-09-04 10:34:49      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:java   servlet   文件复制   

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)

标签:java   servlet   文件复制   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!