Java使用字节流复制文件的方法

时间:2022-09-03 15:11:38

其实用java程序复制文件并不难,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
 
//文件复制 
//E:/3.jpg ---> D:/1.jpg
public class CopyFileByIo {
 
  public static void main(String[] args) {
 
    FileInputStream fis=null;
    FileOutputStream fos=null;
    try {
      //输入流读取 E:/3.jpg
      fis=new FileInputStream("E:/3.jpg");
      //输出流
      fos=new FileOutputStream("D:/1.jpg");
      //字节缓冲区
      byte[] buffer=new byte[1024];
      int len=0;
      while((len=fis.read(buffer))!=-1){
        fos.write(buffer, 0, len);
        fos.flush();
      }
      System.out.println("复制成功!");
     } catch (Exception e) {
        e.printStackTrace();
     } finally{
     try {
        fos.close();
        fis.close();
     } catch (IOException e) {
      e.printStackTrace();
    }
   }
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。