java serializable接口是什么?讓我們一起來了解一下吧!
java serializable接口是java程序中的serializable接口。serializable接口指的是運(yùn)用其序列化功能的一個(gè)接口。如果沒有這個(gè)接口的類便不可以讓它們的任意狀態(tài)變成序列化或者逆序列化。
serializable接口的定義代碼:
public?interface?Serializable?{ }
serializable接口也被稱為標(biāo)識(shí)接口,它沒有其他別的屬性與方法。標(biāo)識(shí)接口的定義是不能解決實(shí)際問題僅僅具有標(biāo)識(shí)功能。
序列化的定義:序列化是將對(duì)象狀態(tài)轉(zhuǎn)換為可保持或傳輸?shù)母袷降倪^程。與序列化相應(yīng)存在的是反序列化,它將流轉(zhuǎn)換成對(duì)象。這兩個(gè)過程結(jié)合起來,可以輕松地存儲(chǔ)和傳輸數(shù)據(jù)。
序列化對(duì)于存儲(chǔ)數(shù)據(jù)的好處:支持?jǐn)?shù)據(jù)傳輸,特別是遠(yuǎn)程調(diào)用的時(shí)候。當(dāng)我們需要把對(duì)象的狀態(tài)信息通過網(wǎng)絡(luò)傳輸或者需要將對(duì)象狀態(tài)信息持久化,以便將來使用時(shí)都需要把對(duì)象進(jìn)行序列化。
實(shí)戰(zhàn)演練,具體代碼如下:
import?java.io.FileInputStream; ? import?java.io.FileOutputStream; ? import?java.io.IOException; ? import?java.io.ObjectInputStream; ? import?java.io.ObjectOutputStream; ? public?class?Test?{undefined ? public?static?void?main(String[]?args)?{undefined ? Person?p?=?new?Person(); ? p.setName("feige"); ? writeObj(p); ? Person?p2?=?readObj(); ? System.out.println(p2); ? } ? //?序列化 ? public?static?void?writeObj(Person?p)?{undefined ? try?{undefined ? ObjectOutputStream?objectOutputStream?=?new?ObjectOutputStream(new?FileOutputStream("E://1.txt")); ? objectOutputStream.writeObject(p); ? objectOutputStream.close(); ? }?catch?(IOException?e)?{undefined ? e.printStackTrace(); ? } ? } ? //?反序列化 ? public?static?Person?readObj()?{undefined ? Person?p?=?null; ? try?{undefined ? ObjectInputStream?objectInputStream?=?new?ObjectInputStream(new?FileInputStream("E://1.txt")); ? try?{undefined ? p?=?(Person)objectInputStream.readObject(); ? }?catch?(ClassNotFoundException?e)?{undefined ? e.printStackTrace(); ? } ? }?catch?(IOException?e)?{undefined ? e.printStackTrace(); ? } ? return?p; ? } ? }
以上就是小編今天的分享了,希望可以幫助到大家。