1. 程式人生 > >Day1227二進位制流物件流反射

Day1227二進位制流物件流反射

二進位制流
DataInputStream dis=new DataInputStream(new FileInputStream(“D:\mydoc\star.jpg”));
DataOutputStream dos=new DataOutputStream(new FileOutputStream(“D:\aa\s.jpg”));
物件流
ObjectOutputStream oos=new ObjectOutputStream(new FileOutputStream(“student.txt”));
ObjectInputStream ois=new ObjectInputStream(new FileInputStream(“student.txt”));
反射:
java反射機制編譯時並不確定那個類被載入了,而是在程式執行時才載入,探知使用,這樣的特點就是反射