Java-IO:复制文件

2018-12-11 09:05:40来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

 1 import java.io.FileInputStream;
 2 import java.io.FileNotFoundException;
 3 import java.io.FileOutputStream;
 4 import java.io.IOException;
 5 
 6 public class CopyFileDemo {
 7     public static void main(String[] args) {
 8 
 9         FileInputStream fis = null;
10         FileOutputStream fos = null;
11         try {
12             fis = new FileInputStream("js.mp3");
13             fos = new FileOutputStream("copy_js.mp3");
14             // BufferedInputStream bis=new BufferedInputStream(fis);
15             // BufferedOutputStream bos=new BufferedOutputStream(fos);
16             byte[] bt = new byte[1024];
17             int len = 0;
18             while ((len = fis.read(bt)) != -1) {
19                 fos.write(bt, 0, len);
20             }
21         } catch (FileNotFoundException e) {
22             e.printStackTrace();
23         } catch (IOException e) {
24             e.printStackTrace();
25         } finally {
26             try {
27                 if (fis != null)
28                     fis.close();
29                 if (fos != null)
30                     fos.close();
31             } catch (IOException e) {
32                 e.printStackTrace();
33             }
34         }
35     }
36 }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:java-两个整数变量的交换-不需要定义第三方变量

下一篇:JAVA基础第一章-初识java