我試圖弄清楚如何寫(連載?)對象。 如果我有這樣的代碼在這裏:寫作對象
public class TestObject {
private String words;
public void getWords(){
words = "These are some important words.";
try{
PrintWriter pw = new PrintWriter("file.txt");
pw.println(words);
System.out.println(words);
}catch(IOException e){
System.out.println(e);
}
}
public static void main(String [] args){
TestObject to = new TestObject();
to.getWords();
}
而且想寫從字符串「字」字爲對象我會怎麼做呢? 爲什麼寫入對象有用?
你描述的不是系列化,僅供參考。 – arshajii
你剛剛寫了一個字符串文件。這不是對象序列化。對象序列化,你可以使用帶有底層FileOutputStream的ObjectOutputStream來序列化爲一個文件。對象序列化允許兩個網絡實體之間方便的數據通信。 – anonymous