文件复制又分为两种情况:
1、纯文本文件复制,可以使用字符流,也可以使用字节流
读取文件内容:
1.1、使用字符流
FileReader fr = new FileReader("a.txt");
1.2、使用字节流
FileInoputStream fis = new FileInputStream("a.txt");
复制写文件内容:
字符流:FileWriter fw = new FileWriter("a_copy.txt");
字节流:FileOutoutStream fis = new FileInoutStream("a_copy.txt");
2、媒体文件复制,只能用字节流对象
读取文件: FileInputStream fis = new FileInputStream("a.txt");
写文件: FileOutoutStream fis = new FileInoutStream("a_copy.txt"); |
|