Implement Object Serialization
作者:互联网
一些序列化的东西。
Java支持把对象序列化,用以在不同平台传递信息。很方便的是它提供Serializable接口,只有调用函数就可以了xxx
首先要给序列化的类加个接口:
class Person implements Serializable {...}
先开一个输出流,然后write一下,最后关掉。整个过程要用try...catch环绕,很舒服:
try { ObjectOutputStream output = new ObjectOutputStream(new FileOutputStream(f)); output.writeObject(a); output.close(); } catch (IOException e) { e.printStackTrace(); }
读入也差不多。
如果对象里有的变量不想被序列化,就加上transient标签:
transient private int numOfsiblings;
没了。
标签:...,ObjectOutputStream,Object,transient,output,Serialization,Implement,序列化,Seria 来源: https://www.cnblogs.com/capterlliar/p/15649298.html