转换流

本文介绍了如何使用Java的转换流解决文件读写过程中的编码问题,通过实例展示了InputStreamReader和OutputStreamWriter配合使用,实现从UTF-8到GBK的编码转换,适用于处理文本文件的编码转换需求。
摘要由CSDN通过智能技术生成

转换流

/**
 * @description TransformationIO
 * @author 小邱
 * @version 0.0.1
 * @since 2021/9/9 13:35
 */

import org.junit.Test;

import java.io.*;

//转换流
//字节流中的数据都是字符时,转成字符流操作更高效
//很多时候我们使用转换流来处理文件乱码问题。实现编码和解码的功能。
public class TransIOTest {
    @Test
    //InputStreamReader与OutputStreamWriter
    public void test() {
        //1、创建File类的对象,指明读入和写出的文件
        File srcFile = new File("F:\\Lean\\Text\\src\\main\\resources\\a.txt");
        File destFile = new File("F:\\Lean\\Text\\src\\main\\resources\\b.txt");
        //2、创建输入流和输出流
        FileInputStream fis = null;
        FileOutputStream fos = null;
        //3、造转换流
        InputStreamReader isr = null;
        OutputStreamWriter osw = null;
        try {
            fis = new FileInputStream(srcFile);
            fos = new FileOutputStream(destFile);
            //指定格式编码,不指定则默认使用系统的格式编码
            isr = new InputStreamReader(fis, "utf-8");
            osw = new OutputStreamWriter(fos, "gbk");
            //4、读写过程
            //数组长度不是越大/越小就好,应当适中,一般为1024的倍数
            char[] chars = new char[1024];
            int len;//记录每次读取到数组的字符数
            while ((len = isr.read(chars)) != -1) {
                osw.write(chars, 0, len);
            }
            osw.flush();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //5、关闭流
            try {
                if (isr != null) {
                    isr.close();
                }
                if (osw != null) {
                    osw.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值