Java IO流--转换流的使用

Posted 路宇_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java IO流--转换流的使用相关的知识,希望对你有一定的参考价值。

转换流的使用:

1、转换流属于处理流

InputStreamReader :将一个字节的输入流转换为字符的输入流
InputStreamWriter:将一个字符的输出流转换为字节的输出流

2、提供字节流与字符流之间的转换

3、解码:字节、字节数组—>字符数组,字符串
编码:字符数组,字符串---->字节,字节数组

4、字符集

一、InputStreamReader 将一个字节的输入流转换为字符的输入流

@Test
    public void test1(){

        InputStreamReader isr = null;
        try {
            FileInputStream fis = new FileInputStream("学习记录.txt");
            isr = new InputStreamReader(fis); //使用系统默认的字符集
            //参数2:指明了字符集,具体使用哪个字符集,取决于 学习文件.txt 保存时 使用的字符集
            isr = new InputStreamReader(fis,"UTF-8");

            char[] cbuf = new char[10];
            int len;
            while ((len= isr.read(cbuf))!=-1){
                String str = new String(cbuf,0,len);
                System.out.println(str);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (isr!=null){
                try {
                    isr.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

二、将一个字符的输出流转换为一个字节的输出流

@Test
    public void test2() {
        InputStreamReader isr = null;
        OutputStreamWriter osw = null;
        try {
            //1.造文件、造流
            File file1 = new File("学习记录.txt");
            File file2 = new File("学习记录5.txt");

            FileInputStream fis = new FileInputStream(file1);
            FileOutputStream fos = new FileOutputStream(file2);

            isr = new InputStreamReader(fis,"UTF-8");
            osw = new OutputStreamWriter(fos,"GBK");
            //2.读取,写入过程
            int len;
            char[] cbuf = new char[5];
            while ((len= isr.read(cbuf))!=-1){
                osw.write(cbuf,0,len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (isr!=null){
                try {
                    isr.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (osw!=null){
                try {
                    osw.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

以上是关于Java IO流--转换流的使用的主要内容,如果未能解决你的问题,请参考以下文章

Java-IO流之转换流的使用和编码与解码原理

Java IO中转换流的作用

java--字节流和字符流的转换

IO流 流操作规律 转换流的由来

阶段1 语言基础+高级_1-3-Java语言高级_06-File类与IO流_08 转换流_3_转换流的原理

java IO流 对象流的使用