- 论坛徽章:
- 0
|
看了精华区的例子,对于什么叫串行化一个对象始终不理解,各位高手请指点,3x
- Object object = new javax.swing.JButton("push me");
-
- try {
- // Serialize to a file
- ObjectOutput out = new ObjectOutputStream(new FileOutputStream("filename.ser"));
- out.writeObject(object);
- out.close();
-
- // Serialize to a byte array
- ByteArrayOutputStream bos = new ByteArrayOutputStream() ;
- out = new ObjectOutputStream(bos) ;
- out.writeObject(object);
- out.close();
-
- // Get the bytes of the serialized object
- byte[] buf = bos.toByteArray();
- } catch (IOException e) {
- }
复制代码 |
|