码迷,mamicode.com
首页 > 其他好文 > 详细

使用FileInputStream类实现将D盘a.jpg复制到E盘目录下

时间:2019-12-30 21:32:03      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:imp   stat   col   jpg   demo   pre   dem   str   int   

 1 import java.io.*;
 2 
 3 /*
 4           使用FileInputStream类实现将D盘a.jpg复制到E盘目录下
 5  */
 6 public class Demo {
 7     public static void main(String[] args) throws IOException {
 8         InputStream in = new FileInputStream("D://a.jpg");
 9         OutputStream out = new FileOutputStream("E://a.jpg");
10         int len = 0 ;
11         byte[] b = new byte[1024 * 10];
12         while ((len = in.read(b)) != -1){
13             out.write(len);
14         }
15         out.close();
16         in.close();
17     }
18 }

使用FileInputStream类实现将D盘a.jpg复制到E盘目录下

标签:imp   stat   col   jpg   demo   pre   dem   str   int   

原文地址:https://www.cnblogs.com/wangjixue/p/12121515.html

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