22.01_IO流(序列流)
- 1.什么是序列流
- 序列流可以把多個(gè)字節(jié)輸入流整合成一個(gè), 從序列流中讀取數(shù)據(jù)時(shí), 將從被整合的第一個(gè)流開始讀, 讀完一個(gè)之后繼續(xù)讀第二個(gè), 以此類推.
- 2.使用方式
- 整合兩個(gè): SequenceInputStream(InputStream, InputStream)
FileInputStream fis1 = new FileInputStream("a.txt"); //創(chuàng)建輸入流對(duì)象,關(guān)聯(lián)a.txt FileInputStream fis2 = new FileInputStream("b.txt"); //創(chuàng)建輸入流對(duì)象,關(guān)聯(lián)b.txt SequenceInputStream sis = new SequenceInputStream(fis1, fis2); //將兩個(gè)流整合成一個(gè)流 FileOutputStream fos = new FileOutputStream("c.txt"); //創(chuàng)建輸出流對(duì)象,關(guān)聯(lián)c.txt int b; while((b = sis.read()) != -1) { //用整合后的讀 fos.write(b); //寫到指定文件上 } sis.close(); fos.close();
22.02_IO流(序列流整合多個(gè))
- 整合多個(gè): SequenceInputStream(Enumeration)
FileInputStream fis1 = new FileInputStream("a.txt"); //創(chuàng)建輸入流對(duì)象,關(guān)聯(lián)a.txt FileInputStream fis2 = new FileInputStream("b.txt"); //創(chuàng)建輸入流對(duì)象,關(guān)聯(lián)b.txt FileInputStream fis3 = new FileInputStream("c.txt"); //創(chuàng)建輸入流對(duì)象,關(guān)聯(lián)c.txt Vector<InputStream> v = new Vector<>(); //創(chuàng)建vector集合對(duì)象 v.add(fis1); //將流對(duì)象添加 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)作一個(gè)緩沖區(qū), 寫出之后可以一次性獲取出所有數(shù)據(jù)
- 2.使用方式
- 創(chuàng)建對(duì)象: 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é)存儲(chǔ)在newArr中 //System.out.println(new String(newArr)); System.out.println(baos); fis.close();
22.04_IO流(內(nèi)存輸出流之黑馬面試題)
- 定義一個(gè)文件輸入流,調(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流(對(duì)象操作流ObjecOutputStream)
- 1.什么是對(duì)象操作流
- 該流可以將一個(gè)對(duì)象寫出, 或者讀取一個(gè)對(duì)象到程序中. 也就是執(zhí)行了序列化和反序列化的操作.
- 2.使用方式
-
寫出: new ObjectOutputStream(OutputStream), writeObject()
public class Demo3_ObjectOutputStream { /** * @param args * @throws IOException * 將對(duì)象寫出,序列化 */ 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é)輸出流,還是字符輸出流都不能直接寫出對(duì)象 ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("e.txt"));//創(chuàng)建對(duì)象輸出流 oos.writeObject(p1); oos.writeObject(p2); oos.close(); } }
-
22.07_IO流(對(duì)象操作流ObjectInputStream)
- 讀取: new ObjectInputStream(InputStream), readObject()
public class Demo3_ObjectInputStream { /** * @param args * @throws IOException * @throws ClassNotFoundException * @throws FileNotFoundException * 讀取對(duì)象,反序列化 */ 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.06_IO流(對(duì)象操作流優(yōu)化)
* 將對(duì)象存儲(chǔ)在集合中寫出
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); //寫出集合對(duì)象
oos.close();
-
讀取到的是一個(gè)集合對(duì)象
ObjectInputStream ois = new ObjectInputStream(new FileInputStream("f.txt")); ArrayList<Person> list = (ArrayList<Person>)ois.readObject(); //泛型在運(yùn)行期會(huì)被擦除,索引運(yùn)行期相當(dāng)于沒有泛型 //想去掉黃色可以加注解 @SuppressWarnings("unchecked") for (Person person : list) { System.out.println(person); } ois.close();
22.08_IO流(加上id號(hào))
- 注意
- 要寫出的對(duì)象必須實(shí)現(xiàn)Serializable接口才能被序列化
- 不用必須加id號(hào)
22.09_IO流(打印流的概述和特點(diǎn))
- 1.什么是打印流
該流可以很方便的將對(duì)象的toString()結(jié)果輸出, 并且自動(dòng)加上換行, 而且可以使用自動(dòng)刷出的模式
-
System.out就是一個(gè)PrintStream, 其默認(rèn)向控制臺(tái)輸出信息
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)用對(duì)象的toString()
- 2.使用方式
打印: print(), println()
自動(dòng)刷出: 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("你好"); //自動(dòng)刷出,只針對(duì)的是println方法 pw.close();
22.10_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.11_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.11_IO流(兩種方式實(shí)現(xiàn)鍵盤錄入)
- A:BufferedReader的readLine方法。
- BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
- B:Scanner
22.12_IO流(隨機(jī)訪問流概述和寫出數(shù)據(jù))
-
A:隨機(jī)訪問流概述
- RandomAccessFile概述
- RandomAccessFile類不屬于流,是Object類的子類粱胜。但它融合了InputStream和OutputStream的功能突琳。
- 支持對(duì)隨機(jī)訪問文件的讀取和寫入。
B:read(),write(),seek()
22.13_IO流(數(shù)據(jù)輸入輸出流)
- 1.什么是數(shù)據(jù)輸入輸出流
- DataInputStream, DataOutputStream可以按照基本數(shù)據(jù)類型大小讀寫數(shù)據(jù)
- 例如按Long大小寫出一個(gè)數(shù)字, 寫出時(shí)該數(shù)據(jù)占8字節(jié). 讀取的時(shí)候也可以按照Long類型讀取, 一次讀取8個(gè)字節(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.14_IO流(Properties的概述和作為Map集合的使用)
- A:Properties的概述
- Properties 類表示了一個(gè)持久的屬性集。
- Properties 可保存在流中或從流中加載。
- 屬性列表中每個(gè)鍵及其對(duì)應(yīng)值都是一個(gè)字符串带污。
- B:案例演示
- Properties作為Map集合的使用
22.15_IO流(Properties的特殊功能使用)
- A:Properties的特殊功能
- public Object setProperty(String key,String value)
- public String getProperty(String key)
- public Enumeration<String> stringPropertyNames()
- B:案例演示
- Properties的特殊功能
22.16_IO流(Properties的load()和store()功能)
- A:Properties的load()和list()功能
- B:案例演示
- Properties的load()和list()功能