加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

基于java文本复制的7种方式总结

发布时间:2020-12-14 20:05:39 所属栏目:Java 来源:网络整理
导读:如下所示: package copy;import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.F

如下所示:

package copy;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
public class FileCopy {
public static void main(String[] args) throws IOException {
// 第一种: 使用FileReader和FileWrite,一次读取一个字符
		FileReader fr = new FileReader("D:a.txt");
		FileWriter fw = new FileWriter("D:b.txt");
		int ch;
		while((ch = fr.read()) != -1) {
			fw.write(ch);
		}
		fw.close();
		fr.close();
// 第二种: 使用FileReader和FileWrite,一次读取一个字符数组
		FileReader fr = new FileReader("D:a.txt");
		FileWriter fw = new FileWriter("D:b.txt");
		char[] chs = new char[1024];
		int len;
		while((len = fr.read(chs)) != -1) {
			fw.write(chs,len);
		}
		fw.close();
		fr.close();
// 第三种: 使用FileOutputStream和FileInputStream,一次读取一个字节
		FileInputStream fis = new FileInputStream("D:a.txt");
		FileOutputStream fos = new FileOutputStream("D:b.txt");
		int ch;
		while((ch = fis.read()) != -1) {
			fos.write(ch);
		}
		fos.close();
		fis.close();
// 第四种: 使用FileOutputStream和FileInputStream,一次读取一个字节数组
		FileInputStream fis = new FileInputStream("D:a.txt");
		FileOutputStream fos = new FileOutputStream("D:b.txt");
		int ch;
		byte[] by = new byte[1024];
		while((ch = fis.read(by)) != -1) {
			fos.write(by,ch);
		}
		fos.close();
		fis.close();
// 第五种: 使用BufferedReader和BufferedWriter,一次读取一行
		BufferedReader br = new BufferedReader(new FileReader("D:a.txt"));
		BufferedWriter bw = new BufferedWriter(new FileWriter("D:b.txt"));
		String line;
		while((line = br.readLine()) != null) {
			bw.write(line);
			bw.newLine();
			bw.flush();
		}
		bw.close();
		br.close();
// 第六种: 使用高效缓冲流,BufferedInputStream和BufferedOutputStream,一次读取一个字节
		BufferedInputStream bis = new BufferedInputStream(new FileInputStream("D:a.txt"));
		BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("D:b.txt"));
		int ch;
		while((ch = bis.read()) != -1) {
			bos.write(ch);
		}
		bos.close();
		bis.close();
// 第七种: 使用高效缓冲流,一次读取一个字节数组
		BufferedInputStream bis = new BufferedInputStream(new FileInputStream("D:a.txt"));
		BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("D:b.txt"));
		int ch;
		byte[] by = new byte[1024];
		while((ch = bis.read(by)) != -1) {
			bos.write(by,ch);
		}
		bos.close();
		bis.close();
}
}

以上这篇基于java文本复制的7种方式总结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

您可能感兴趣的文章:

  • 4种java复制文件的方式
  • 浅谈Java中复制数组的方式

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读