Java基础之序列化对象——反序列化对象(DeserializeObjects)

控制台程序,使用如下代码能读入包含Junk对象的文件:

 1 import java.io.*;
 2 import java.nio.file.*;
 3 
 4 class DeserializeObjects {
 5   public static void main(String args[]) {
 6     Path file = Paths.get(System.getProperty("user.home")).resolve("Beginning Java Struff").resolve("JunkObjects.bin");
 7     if(Files.notExists(file)) {
 8       System.out.printf("\nFile %s does not exist.", file);
 9       System.exit(1);
10     }
11 
12     int objectCount = 0;                                               // Number of objects read
13     try (ObjectInputStream objectIn = new ObjectInputStream(new BufferedInputStream(Files.newInputStream(file)))){
14        // Read from the stream until we hit the end
15        Junk object = null;                                             // Stores an object reference
16        while(true) {
17         object = (Junk)objectIn.readObject();                          // Read an object
18         ++objectCount;                                                 // Increment the count
19         System.out.println(object);                                    // Output the object
20       }
21 
22     } catch(EOFException e) {                                          // This will execute when we reach EOF
23       System.out.println("EOF reached. "+ objectCount + " objects read.");
24 
25     } catch(IOException|ClassNotFoundException e) {
26       e.printStackTrace();
27     }
28   }
29 }

 

转载于:https://www.cnblogs.com/mannixiang/p/3409400.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值