java的序列化和反序列化
Posted qurui1997
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java的序列化和反序列化相关的知识,希望对你有一定的参考价值。
package com.lideng.work325; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; /** * 序列化和反序列化 * @author Administrator * */ public class Demo05 implements Serializable{ public static void main(String[] args) { try { test01("c:/Test.java"); } catch (Exception e) { e.printStackTrace(); } } /** * 反序列化 * @param file * @throws Exception */ public static void test01(String file) throws Exception{ ObjectInputStream os=new ObjectInputStream(new BufferedInputStream(new FileInputStream(file))); Object obj = os.readObject(); System.out.println(obj); int[] num=(int[])obj; for (int i = 0; i < num.length; i++) { System.out.println(num[i]); } } /** * 序列化 * @param file * @throws Exception */ public static void test(String file) throws Exception{ int [] num={5,8,9,4,8}; ObjectOutputStream os=new ObjectOutputStream( new BufferedOutputStream(new FileOutputStream(file))); os.writeObject(num); os.flush(); os.close(); } }
以上是关于java的序列化和反序列化的主要内容,如果未能解决你的问题,请参考以下文章