package?file;
import?java.io.File;
import?java.io.FileOutputStream;
import?java.io.IOException;
import?java.io.ObjectOutputStream;
public?class?ObjectSeriaDemo?{
????public?static?void?main(String[]?args)?throws?IOException?{
????????String?file="F:/Code/Demo6.txt";
????????ObjectOutputStream?out=new?ObjectOutputStream(new?FileOutputStream(file));
????????Student?student=new?Student("01001","張三",20);
????????out.writeObject(student);
????????out.flush();
????????out.close();
????}
}
package?file;
import?java.io.Serializable;
public?class?Student?implements?Serializable?{
????private?String?stuno;
????private?String?stuname;
????private?int?stuage;
????public?Student(){
????}
????public?Student(String?stuno,String?stuname,int?stuage){
????????super();
????????this.stuno=stuno;
????????this.stuname=stuname;
????????this.stuage=stuage;
????}
????public?String?getStuno()?{
????????return?stuno;
????}
????public?void?setStuno(String?stuno)?{
????????this.stuno?=?stuno;
????}
????public?String?getStuname()?{
????????return?stuname;
????}
????public?void?setStuname(String?stuname)?{
????????this.stuname?=?stuname;
????}
????public?int?getStuage()?{
????????return?stuage;
????}
????public?void?setStuage(int?stuage)?{
????????this.stuage?=?stuage;
????}
????@Override
????public?String?toString()?{
????????return?"Student{"?+
????????????????"stuno='"?+?stuno?+?'\''?+
????????????????",?stuname='"?+?stuname?+?'\''?+
????????????????",?stuage="?+?stuage?+
????????????????'}';
????}
}
2019-02-20
把項目編碼調成gbk試下
2018-12-03
序列化寫入文件里的是亂碼 但是你從文件讀出來的時候就不是亂碼了