image.pngimage.png
    image.png
    image.png
    image.png
    image.png
    image.png

    • 处理就之二:转换流的使用

      1.转换流:属于字符流
      InputStreamReader:将一个字节的输入流转换为字符的输入流
      OutputStreamWrite: 将一个字符的输出流转换为字节的输出流

      2.作用:提供字节流与字符流之间的转换

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

      * 4.字符集 ```java package com.atguigu.java1;

    import org.junit.Test;

    import java.io.*;

    /**

    • 处理就之二:转换流的使用 *
    • 1.转换流:属于字符流
    • InputStreamReader:将一个字节的输入流转换为字符的输入流
    • OutputStreamWrite: 将一个字符的输出流转换为字节的输出流 *
    • 2.作用:提供字节流与字符流之间的转换 *
    • 3.解码:字节、字节数组 —->字符数组、字符串
    • 编码:字符数组、字符串 —->字节、字节数组 *
    • 4.字符集
    • @author Dxkstart
    • @create 2021-05-30 16:05 */ public class InputStreamReaderTest {

      / InputStreamReader的使用,实现字节的输入流到字符的输入流的转换 / @Test public void test1(){

      1. InputStreamReader isr = null;//自定义字符集
      2. try {
      3. FileInputStream fis = new FileInputStream("Hello1.txt");

      // InputStreamReader isr = new InputStreamReader(fis);//使用系统默认的字符集

      1. //参数2,指明了字符集,具体使用哪个字符集,取决于文件保存时使用的字符集
      2. isr = new InputStreamReader(fis,"UTF-8");
      3. char[] buff = new char[20];
      4. int len;
      5. while ((len = isr.read(buff)) != -1){
      6. String str = new String(buff,0,len);
      7. System.out.println(str);
      8. }
      9. } catch (IOException e) {
      10. e.printStackTrace();
      11. } finally {
      12. try {
      13. if(isr != null) {
      14. isr.close();
      15. }
      16. } catch (IOException e) {
      17. e.printStackTrace();
      18. }
      19. }

      }

    1. /*
    2. 综合使用InputStreamReader和OutputStreamWriter
    3. */
    4. @Test
    5. public void test2(){
    6. InputStreamReader isr = null;
    7. OutputStreamWriter osw = null;
    8. try {
    9. //1.造文件、造流
    10. File file1 = new File("Hello1.txt");
    11. File file2 = new File("Hello1_gbk.txt");
    12. FileInputStream fis = new FileInputStream(file1);
    13. FileOutputStream fos = new FileOutputStream(file2);
    14. isr = new InputStreamReader(fis,"UTF-8");
    15. osw = new OutputStreamWriter(fos,"gbk");
    16. //读写过程
    17. char[] buff = new char[20];
    18. int len;
    19. while((len = isr.read(buff)) != -1){
    20. osw.write(buff,0,len);
    21. }
    22. } catch (IOException e) {
    23. e.printStackTrace();
    24. } finally {
    25. try {
    26. if(isr != null) {
    27. isr.close();
    28. }
    29. } catch (IOException e) {
    30. e.printStackTrace();
    31. }
    32. try {
    33. if(osw != null) {
    34. osw.close();
    35. }
    36. } catch (IOException e) {
    37. e.printStackTrace();
    38. }
    39. }
    40. }

    }

    ```