Serializable接口是一個(gè)標(biāo)記接口,不用實(shí)現(xiàn)任何方法,一旦某個(gè)類實(shí)現(xiàn)了該方法,則該類的對(duì)象是可序列化的。
創(chuàng)新互聯(lián)建站是一家專業(yè)提供羅田企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站建設(shè)、成都網(wǎng)站制作、H5場(chǎng)景定制、小程序制作等業(yè)務(wù)。10年已為羅田眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。具體步驟:
1、創(chuàng)建一個(gè)ObjectOutputStream輸出流;
2、調(diào)用OjectOutputSteam對(duì)象的writeObject ()輸出可序列化對(duì)象。
public class Person implements Serializable { private String name; private String age; public Person() { System.out.println("調(diào)用Person的無參構(gòu)造函數(shù)"); } public Person(String name, String age) { this.name = name; this.age = age; System.out.println("調(diào)用Person的有參構(gòu)造函數(shù)"); } @Override public String toString() { // TODO 自動(dòng)生成的方法存根 return "Person{'name' :" + name + ",'age' :" + age + "}"; } }
public class WriteObject { public static void main(String[] args) { try { ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("Person.txt")); Person p = new Person("baby", "12"); oos.writeObject(p); } catch (Exception e) { // TODO: handle exception } } }
輸出如下:
aced 0005 7372 0017 7365 7269 616c 697a 6162 6c65 5465 7374 2e50 6572 736f 6e4e aff9 165f 38dd f602 0002 4c00 0361 6765 7400 124c 6a61 7661 2f6c 616e 672f 5374 7269 6e67 3b4c 0004 6e61 6d65 7100 7e00 0178 7074 0002 3132 7400 0462 6162 79
以上就是java中如何使用Serializable接口實(shí)現(xiàn)序列化的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!