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

java易忘代码备份

时间:2015-05-27 01:12:41      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:java

1、文件上传  

private static void copy(File src, File dst) throws IOException {

   InputStream in = null;

   OutputStream out = null;

   in = new BufferedInputStream(new FileInputStream(src), BUFFER_SIZE);

   out = new BufferedOutputStream(new FileOutputStream(dst), BUFFER_SIZE);

   byte[] buffer = new byte[16 * 1024];

   int len = 0;

   while ((len = in.read(buffer)) > 0) {

     out.write(buffer, 0, len);

   }

   if (null != in) {

     in.close();

   }

   if (null != out) {

     out.close();

   }

 }




java易忘代码备份

标签:java

原文地址:http://ql0722.blog.51cto.com/4353164/1655402

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