IO其他內(nèi)容

22.01_IO流(序列流)(了解)

  • 1.什么是序列流
    • 序列流可以把多個字節(jié)輸入流整合成一個, 從序列流中讀取數(shù)據(jù)時, 將從被整合的第一個流開始讀, 讀完一個之后繼續(xù)讀第二個, 以此類推.
  • 2.使用方式
    • 整合兩個: SequenceInputStream(InputStream, InputStream)
    •   FileInputStream fis1 = new FileInputStream("a.txt");            //創(chuàng)建輸入流對象,關(guān)聯(lián)a.txt
        FileInputStream fis2 = new FileInputStream("b.txt");            //創(chuàng)建輸入流對象,關(guān)聯(lián)b.txt
        SequenceInputStream sis = new SequenceInputStream(fis1, fis2);  //將兩個流整合成一個流
        FileOutputStream fos = new FileOutputStream("c.txt");           //創(chuàng)建輸出流對象,關(guān)聯(lián)c.txt
        
        int b;
        while((b = sis.read()) != -1) {                                 //用整合后的讀
            fos.write(b);                                               //寫到指定文件上
        }
        
        sis.close();
        fos.close(); 
      

22.02_IO流(序列流整合多個)(了解)

  • 整合多個: SequenceInputStream(Enumeration)
  •   FileInputStream fis1 = new FileInputStream("a.txt");    //創(chuàng)建輸入流對象,關(guān)聯(lián)a.txt
      FileInputStream fis2 = new FileInputStream("b.txt");    //創(chuàng)建輸入流對象,關(guān)聯(lián)b.txt
      FileInputStream fis3 = new FileInputStream("c.txt");    //創(chuàng)建輸入流對象,關(guān)聯(lián)c.txt
      Vector<InputStream> v = new Vector<>();                 //創(chuàng)建vector集合對象
      v.add(fis1);                                            //將流對象添加
      v.add(fis2);
      v.add(fis3);
      Enumeration<InputStream> en = v.elements();             //獲取枚舉引用
      SequenceInputStream sis = new SequenceInputStream(en);  //傳遞給SequenceInputStream構(gòu)造
      FileOutputStream fos = new FileOutputStream("d.txt");
      int b;
      while((b = sis.read()) != -1) {
          fos.write(b);
      }
    
      sis.close();
      fos.close();
    

22.03_IO流(內(nèi)存輸出流*****)(掌握)

  • 1.什么是內(nèi)存輸出流
    • 該輸出流可以向內(nèi)存中寫數(shù)據(jù), 把內(nèi)存當(dāng)作一個緩沖區(qū), 寫出之后可以一次性獲取出所有數(shù)據(jù)
  • 2.使用方式
    • 創(chuàng)建對象: new ByteArrayOutputStream()
    • 寫出數(shù)據(jù): write(int), write(byte[])
    • 獲取數(shù)據(jù): toByteArray()
    •   FileInputStream fis = new FileInputStream("a.txt");
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        int b;
        while((b = fis.read()) != -1) {
            baos.write(b);
        }
        
        //byte[] newArr = baos.toByteArray();               //將內(nèi)存緩沖區(qū)中所有的字節(jié)存儲在newArr中
        //System.out.println(new String(newArr));
        System.out.println(baos);
        fis.close();
      

22.04_IO流(內(nèi)存輸出流之黑馬面試題)(掌握)

  • 定義一個文件輸入流,調(diào)用read(byte[] b)方法,將a.txt文件中的內(nèi)容打印出來(byte數(shù)組大小限制為5)
  •       FileInputStream fis = new FileInputStream("a.txt");             //創(chuàng)建字節(jié)輸入流,關(guān)聯(lián)a.txt
          ByteArrayOutputStream baos = new ByteArrayOutputStream();       //創(chuàng)建內(nèi)存輸出流
          byte[] arr = new byte[5];                                       //創(chuàng)建字節(jié)數(shù)組,大小為5
          int len;
          while((len = fis.read(arr)) != -1) {                            //將文件上的數(shù)據(jù)讀到字節(jié)數(shù)組中
              baos.write(arr, 0, len);                                    //將字節(jié)數(shù)組的數(shù)據(jù)寫到內(nèi)存緩沖區(qū)中
          }
          System.out.println(baos);                                       //將內(nèi)存緩沖區(qū)的內(nèi)容轉(zhuǎn)換為字符串打印
          fis.close();
    

22.05_IO流(隨機(jī)訪問流概述和讀寫數(shù)據(jù))(了解)

  • A:隨機(jī)訪問流概述

    • RandomAccessFile概述
    • RandomAccessFile類不屬于流,是Object類的子類。但它融合了InputStream和OutputStream的功能。
    • 支持對隨機(jī)訪問文件的讀取和寫入。
  • B:read(),write(),seek()

22.06_IO流(對象操作流ObjecOutputStream)(了解)

  • 1.什么是對象操作流
    • 該流可以將一個對象寫出, 或者讀取一個對象到程序中. 也就是執(zhí)行了序列化和反序列化的操作.
  • 2.使用方式
    • 寫出: new ObjectOutputStream(OutputStream), writeObject()

        public class Demo3_ObjectOutputStream {
      
            /**
             * @param args
             * @throws IOException 
             * 將對象寫出,序列化
             */
            public static void main(String[] args) throws IOException {
                Person p1 = new Person("張三", 23);
                Person p2 = new Person("李四", 24);
        //      FileOutputStream fos = new FileOutputStream("e.txt");
        //      fos.write(p1);
        //      FileWriter fw = new FileWriter("e.txt");
        //      fw.write(p1);
                //無論是字節(jié)輸出流,還是字符輸出流都不能直接寫出對象
                ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("e.txt"));//創(chuàng)建對象輸出流
                oos.writeObject(p1);
                oos.writeObject(p2);
                oos.close();
            }
        
        }
      

22.07_IO流(對象操作流ObjectInputStream)(了解)

  • 讀取: new ObjectInputStream(InputStream), readObject()
    •   public class Demo3_ObjectInputStream {
      
            /**
             * @param args
             * @throws IOException 
             * @throws ClassNotFoundException 
             * @throws FileNotFoundException 
             * 讀取對象,反序列化
             */
            public static void main(String[] args) throws IOException, ClassNotFoundException {
                ObjectInputStream ois = new ObjectInputStream(new FileInputStream("e.txt"));
                Person p1 = (Person) ois.readObject();
                Person p2 = (Person) ois.readObject();
                System.out.println(p1);
                System.out.println(p2);
                ois.close();
            }
        
        }
      

22.08_IO流(對象操作流優(yōu)化)(了解)

* 將對象存儲在集合中寫出

Person p1 = new Person("張三", 23);
Person p2 = new Person("李四", 24);
Person p3 = new Person("馬哥", 18);
Person p4 = new Person("輝哥", 20);

ArrayList<Person> list = new ArrayList<>();
list.add(p1);
list.add(p2);
list.add(p3);
list.add(p4);

ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("f.txt"));
oos.writeObject(list);                                  //寫出集合對象

oos.close();
  • 讀取到的是一個集合對象

      ObjectInputStream ois = new ObjectInputStream(new FileInputStream("f.txt"));
          ArrayList<Person> list = (ArrayList<Person>)ois.readObject();   //泛型在運(yùn)行期會被擦除,索引運(yùn)行期相當(dāng)于沒有泛型
      //想去掉黃色可以加注解            
      @SuppressWarnings("unchecked")
          for (Person person : list) {
              System.out.println(person);
          }
      
      ois.close();
    

22.09_IO流(加上id號)(了解)

  • 注意
    • 要寫出的對象必須實(shí)現(xiàn)Serializable接口才能被序列化
    • 不用必須加id號

22.10_IO流(數(shù)據(jù)輸入輸出流)(了解)

  • 1.什么是數(shù)據(jù)輸入輸出流
    • DataInputStream, DataOutputStream可以按照基本數(shù)據(jù)類型大小讀寫數(shù)據(jù)
    • 例如按Long大小寫出一個數(shù)字, 寫出時該數(shù)據(jù)占8字節(jié). 讀取的時候也可以按照Long類型讀取, 一次讀取8個字節(jié).
  • 2.使用方式
    • DataOutputStream(OutputStream), writeInt(), writeLong()

        DataOutputStream dos = new DataOutputStream(new FileOutputStream("b.txt"));
        dos.writeInt(997);
        dos.writeInt(998);
        dos.writeInt(999);
        
        dos.close();
      
    • DataInputStream(InputStream), readInt(), readLong()

        DataInputStream dis = new DataInputStream(new FileInputStream("b.txt"));
        int x = dis.readInt();
        int y = dis.readInt();
        int z = dis.readInt();
        System.out.println(x);
        System.out.println(y);
        System.out.println(z);
        dis.close();
      

22.11_IO流(打印流的概述和特點(diǎn))(掌握)

  • 1.什么是打印流
    • 該流可以很方便的將對象的toString()結(jié)果輸出, 并且自動加上換行, 而且可以使用自動刷出的模式

    • System.out就是一個PrintStream, 其默認(rèn)向控制臺輸出信息

        PrintStream ps = System.out;
        ps.println(97);                 //其實(shí)底層用的是Integer.toString(x),將x轉(zhuǎn)換為數(shù)字字符串打印
        ps.println("xxx");
        ps.println(new Person("張三", 23));
        Person p = null;
        ps.println(p);                  //如果是null,就返回null,如果不是null,就調(diào)用對象的toString()
      
  • 2.使用方式
    • 打印: print(), println()

    • 自動刷出: PrintWriter(OutputStream out, boolean autoFlush, String encoding)

    • 打印流只操作數(shù)據(jù)目的

        PrintWriter pw = new PrintWriter(new FileOutputStream("g.txt"), true);
        pw.write(97);
        pw.print("大家好");
        pw.println("你好");               //自動刷出,只針對的是println方法
        pw.close();
      

22.12_IO流(標(biāo)準(zhǔn)輸入輸出流概述和輸出語句)

  • 1.什么是標(biāo)準(zhǔn)輸入輸出流(掌握)
    • System.in是InputStream, 標(biāo)準(zhǔn)輸入流, 默認(rèn)可以從鍵盤輸入讀取字節(jié)數(shù)據(jù)
    • System.out是PrintStream, 標(biāo)準(zhǔn)輸出流, 默認(rèn)可以向Console中輸出字符和字節(jié)數(shù)據(jù)
  • 2.修改標(biāo)準(zhǔn)輸入輸出流(了解)
    • 修改輸入流: System.setIn(InputStream)
    • 修改輸出流: System.setOut(PrintStream)
    •   System.setIn(new FileInputStream("a.txt"));             //修改標(biāo)準(zhǔn)輸入流
        System.setOut(new PrintStream("b.txt"));                //修改標(biāo)準(zhǔn)輸出流
        
        InputStream in = System.in;                             //獲取標(biāo)準(zhǔn)輸入流
        PrintStream ps = System.out;                            //獲取標(biāo)準(zhǔn)輸出流
        int b;
        while((b = in.read()) != -1) {                          //從a.txt上讀取數(shù)據(jù)
            ps.write(b);                                        //將數(shù)據(jù)寫到b.txt上
        }
        
        in.close();
        ps.close();
      

22.13_IO流(修改標(biāo)準(zhǔn)輸入輸出流拷貝圖片)(了解)

    System.setIn(new FileInputStream("IO圖片.png"));      //改變標(biāo)準(zhǔn)輸入流
    System.setOut(new PrintStream("copy.png"));         //改變標(biāo)準(zhǔn)輸出流
    
    InputStream is = System.in;                         //獲取標(biāo)準(zhǔn)輸入流
    PrintStream ps = System.out;                        //獲取標(biāo)準(zhǔn)輸出流
    
    int len;
    byte[] arr = new byte[1024 * 8];
    
    while((len = is.read(arr)) != -1) {
        ps.write(arr, 0, len);
    }
    
    is.close();
    ps.close();

22.14_IO流(兩種方式實(shí)現(xiàn)鍵盤錄入)(了解)

  • A:BufferedReader的readLine方法。
    • BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  • B:Scanner

22.15_IO流(Properties的概述和作為Map集合的使用)(了解)

  • A:Properties的概述
    • Properties 類表示了一個持久的屬性集。
    • Properties 可保存在流中或從流中加載。
    • 屬性列表中每個鍵及其對應(yīng)值都是一個字符串。
  • B:案例演示
    • Properties作為Map集合的使用

22.16_IO流(Properties的特殊功能使用)(了解)

  • A:Properties的特殊功能
    • public Object setProperty(String key,String value)
    • public String getProperty(String key)
    • public Enumeration<String> stringPropertyNames()
  • B:案例演示
    • Properties的特殊功能

22.17_IO流(Properties的load()和store()功能)(了解)

  • A:Properties的load()和store()功能
  • B:案例演示
    • Properties的load()和store()功能
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容