BufferedOutputStream,BufferedInputStream是字节流,对象处理流,序列化,输入输出流,转换流

news/2024/11/25 3:02:52/
  1. BufferedInputStream字节输入流
    1. 意思就是InputStream类及其子类都能以参数的形式放到BufferedInputStream构造器的参数
    2. package com.hspedu.outputstream_;import java.io.*;/*** @author 韩顺平* @version 1.0* 演示使用BufferedOutputStream 和 BufferedInputStream使用* 使用他们,可以完成二进制文件拷贝.* 思考:字节流可以操作二进制文件,可以操作文本文件吗?当然可以*/
      public class BufferedCopy02 {public static void main(String[] args) {//        String srcFilePath = "e:\\Koala.jpg";
      //        String destFilePath = "e:\\hsp.jpg";
      //        String srcFilePath = "e:\\0245_韩顺平零基础学Java_引出this.avi";
      //        String destFilePath = "e:\\hsp.avi";String srcFilePath = "e:\\a.java";String destFilePath = "e:\\a3.java";//创建BufferedOutputStream对象BufferedInputStream对象BufferedInputStream bis = null;BufferedOutputStream bos = null;try {//因为 FileInputStream  是 InputStream 子类bis = new BufferedInputStream(new FileInputStream(srcFilePath));bos = new BufferedOutputStream(new FileOutputStream(destFilePath));//循环的读取文件,并写入到 destFilePathbyte[] buff = new byte[1024];int readLen = 0;//当返回 -1 时,就表示文件读取完毕while ((readLen = bis.read(buff)) != -1) {bos.write(buff, 0, readLen);}System.out.println("文件拷贝完毕~~~");} catch (IOException e) {e.printStackTrace();} finally {//关闭流 , 关闭外层的处理流即可,底层会去关闭节点流try {if(bis != null) {bis.close();}if(bos != null) {bos.close();}} catch (IOException e) {e.printStackTrace();}}}
      }
      

      文件拷贝图片

  2. BufferedOutputStream字节输出流

     

    1. 同上
  3. 对象处理流ObjectInputStream,ObjectOutputStream提供了对基本类型或对象类型的序列化和反序列化的方法
  4. 需要让某个对象支持序列化机制,则必须让其类是可序列化的,为了让某个类是可序列化的,该类必须实现接口。
  5. ObjectInputStream

     提供反序列化功能,文件--->程序

    1. package com.hspedu.inputstream_;import com.hspedu.outputstream_.Dog;import java.io.*;/*** @author 韩顺平* @version 1.0*/
      public class ObjectInputStream_ {public static void main(String[] args) throws IOException, ClassNotFoundException {//指定反序列化的文件String filePath = "e:\\data.dat";ObjectInputStream ois = new ObjectInputStream(new FileInputStream(filePath));//读取//老师解读//1. 读取(反序列化)的顺序需要和你保存数据(序列化)的顺序一致//2. 否则会出现异常System.out.println(ois.readInt());System.out.println(ois.readBoolean());System.out.println(ois.readChar());System.out.println(ois.readDouble());System.out.println(ois.readUTF());//dog 的编译类型是 Object , dog 的运行类型是 DogObject dog = ois.readObject();System.out.println("运行类型=" + dog.getClass());System.out.println("dog信息=" + dog);//底层 Object -> Dog//这里是特别重要的细节://1. 如果我们希望调用Dog的方法, 需要向下转型//2. 需要我们将Dog类的定义,放在到可以引用的位置Dog dog2 = (Dog)dog;System.out.println(dog2.getName()); //旺财..//关闭流, 关闭外层流即可,底层会关闭 FileInputStream 流ois.close();}
      }

      需要将Dog类的定义,放在可以引用的位置,public

  6. ObjectOutputStream:提供序列化功能,程序--->文件
    1. package com.hspedu.outputstream_;import java.io.FileOutputStream;
      import java.io.ObjectOutputStream;
      import java.io.Serializable;/*** @author 韩顺平* @version 1.0* 演示ObjectOutputStream的使用, 完成数据的序列化*/
      public class ObjectOutStream_ {public static void main(String[] args) throws Exception {//序列化后,保存的文件格式,不是存文本,而是按照他的格式来保存String filePath = "e:\\data.dat";ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(filePath));//序列化数据到 e:\data.datoos.writeInt(100);// int -> Integer (实现了 Serializable)oos.writeBoolean(true);// boolean -> Boolean (实现了 Serializable)oos.writeChar('a');// char -> Character (实现了 Serializable)oos.writeDouble(9.5);// double -> Double (实现了 Serializable)oos.writeUTF("韩顺平教育");//String//保存一个dog对象oos.writeObject(new Dog("旺财", 10, "日本", "白色"));//Dog类必须实现接口才能序列化oos.close();System.out.println("数据保存完毕(序列化形式)");}
      }

      Dog类需要实现Serializeable接口

  7. 序列化反序列化注意事项【int,String...都已经实现序列化了】

    1. 读写顺序要一致

    2. 要求序列化或反序列化对象,需要实现Serializable

    3. 序列化的类中建议添加SerialVersionUID,为了提高版本的兼容性

    4. 序列化对象时,默认将里面所有属性都进行序列化,但除了static或transient修饰的成员

    5. 序列化对象时,要求里面属性的类型也需要实现序列化接口

    6. 序列化具备可继承性,也就是如果某类已经实现了序列化,则它的所有子类也已经默认实现了序列化

  8. 输入和输出流

    1. package com.hspedu.standard;import java.io.InputStreamReader;
      import java.io.OutputStreamWriter;
      import java.util.Scanner;/*** @author 韩顺平* @version 1.0*/
      public class InputAndOutput {public static void main(String[] args) {//System 类 的 public final static InputStream in = null;// System.in 编译类型   InputStream// System.in 运行类型   BufferedInputStream// 表示的是标准输入 键盘System.out.println(System.in.getClass());//老韩解读//1. System.out public final static PrintStream out = null;//2. 编译类型 PrintStream//3. 运行类型 PrintStream//4. 表示标准输出 显示器System.out.println(System.out.getClass());System.out.println("hello, 韩顺平教育~");Scanner scanner = new Scanner(System.in);System.out.println("输入内容");String next = scanner.next();System.out.println("next=" + next);}
      }
      
  9. 转换流InputStreamReader,字节输入流转成字符输入流,见名知意。

    1. InputStreamReader:Reader的子类,可以将InputStream(字节流)包装成(转换)Reader(字符流)

    2. package com.hspedu.transformation;import java.io.*;/*** @author 韩顺平* @version 1.0* 演示使用 InputStreamReader 转换流解决中文乱码问题* 将字节流 FileInputStream 转成字符流  InputStreamReader, 指定编码 gbk/utf-8*/
      public class InputStreamReader_ {public static void main(String[] args) throws IOException {String filePath = "e:\\a.txt";//解读//1. 把 FileInputStream 转成 InputStreamReader//2. 指定编码 gbk//InputStreamReader isr = new InputStreamReader(new FileInputStream(filePath), "gbk");//3. 把 InputStreamReader 传入 BufferedReader//BufferedReader br = new BufferedReader(isr);//将2 和 3 合在一起BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(filePath), "gbk"));//4. 读取String s = br.readLine();System.out.println("读取内容=" + s);//5. 关闭外层流br.close();}}
      

  10. OutputStreamWriter:Writer的子类,实现将OutputStream(字节流)包装成Writer(字符流)

    1. package com.hspedu.transformation;import java.io.*;/*** @author 韩顺平* @version 1.0* 演示 OutputStreamWriter 使用* 把FileOutputStream 字节流,转成字符流 OutputStreamWriter* 指定处理的编码 gbk/utf-8/utf8*/
      public class OutputStreamWriter_ {public static void main(String[] args) throws IOException {String filePath = "e:\\hsp.txt";String charSet = "utf-8";OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(filePath), charSet);osw.write("hi, 韩顺平教育");osw.close();System.out.println("按照 " + charSet + " 保存文件成功~");}
      }
      

  11. 当处理纯文本数据时,如果使用字符流效率更高,并且可以有效解决中文问题,所以建议将字节流转换成字符流

  12. 可以在使用时指定编码格式(utf-8,gbk,gb2312,ISO8859-1)


http://www.ppmy.cn/news/47340.html

相关文章

带你浅谈下Quartz的简单使用

Scheduler 每次执行,都会根据JobDetail创建一个新的Job实例,这样就可以规避并发访问的问题(jobDetail的实例也是新的) Quzrtz 定时任务默认都是并发执行,不会等待上一次任务执行完毕,只要间隔时间到就会执…

电子台账:生成的数据和图表导出到一个excel表中

目录 1 数据选择 1.1 选择1行数据 1.2 选择1列数据 2 图表设置 3 数据导出 为了便于进行数据分析和数据展示,可以把生成的汇总数据生成图表,然后对图表进行定制修改,最后把数据和图表一起导出到一个excel表中。 程序目前支持两种数据作…

开放式蓝牙耳机哪个好,分享几款舒适性高的开放式蓝牙耳机

开放式耳机的兴起是近几年来才出现的新概念,开放式耳机也是近几年来才开始流行起来,在我看来开放式耳机的兴起是科技进步的产物。随着蓝牙耳机技术和设备的发展,蓝牙耳机也越来越普及,但是也给用户带来了很多困扰。而开放式耳机就…

mulesoft MCIA 破釜沉舟备考 2023.04.18.16

mulesoft MCIA 破釜沉舟备考 2023.04.18.16 1. A mule application is required to periodically process large data set from a back-end database to Salesforce CRM using batch job scope configured properly process the higher rate of records.2. A company is design…

ai文案生成器免费-ai文案改写软件免费

让你的文章更加精彩- AI文章润色 在今天的信息化时代,文章编辑变得越来越容易。但是,如何让自己的文章在海量信息中脱颖而出并吸引更多的阅读者却是一项挑战。 如果你是一位写作爱好者或你是一位工作中需要写作的从业者,你会发现你需要让你…

史上最牛二分查找,不服来战

🤩本文作者:大家好,我是paperjie,感谢你阅读本文,欢迎一建三连哦。 🥰内容专栏:这里是《算法详解》,笔者用重金(时间和精力)打造,将算法知识一网打尽,希望可以…

4.2 矩阵乘法的Strassen算法

1.伪代码以及用到的公式 ​ ​ ​ 2.代码 package collection; ​ public class StrassenMatrixMultiplication {public static int[][] multiply(int[][] a, int[][] b) {int n a.length;int[][] result new int[n][n]; ​if (n 1) {result[0][0] a[0][0] * b[0][0…

渲染管线介绍

返回目录 大家好,我是阿赵。 渲染管线网上很多人都介绍过,我这个基本上是写给自己的看的一个笔记,各位不用介意。 一、渲染流水线的简单说明: 如果把渲染流水线列出来,大概有这些过程: CPU模型数据-顶点…