1

さまざまなオブジェクトを含む ArrayList をファイルに書き込もうとしています。これは私のArrayListです:

ArrayList<Person> personList = new ArrayList<Person>();
    private Person theCaptain;


    void init(){

    //Adding persons to the list

    personList.add(new Coach("Tesan de Boer", "Vieruslaan 3b", "0689337554"));
    personList.add(new Goalkeeper("Peter Post", "Eeuwige student 66", "2222", 1));
    personList.add(new Goalkeeper("piet puk", "Weg van ongenade 88", "2222", 21));
    personList.add(new Goalkeeper("Siem van Aanhoolt", "Straatweg 45", " 0612213446", 31));
    personList.add(new Fielder("Koen Weegink", "Straatweg 45", "2222", 2));
    personList.add(new Fielder("Jan-Willem Rufus op den Haar", "Straatweg 45", " 0614226698", 3));
    personList.add(new Fielder("Tom Kraniker", "Straatweg 45", "069873663", 4));
    personList.add(new Fielder("Leon het Kanon", "Straatweg 45", "2222", 6));
    personList.add(new Fielder("Robin Hogezant", "Straatweg 45", "2222", 7));
    personList.add(new Fielder("Loesoe de Kat", "Straatweg 45", "222", 8));
    personList.add(new Fielder("Morris de Spee", "Straatweg 45", "2222", 9));
    personList.add(new Fielder("Rein Zoekers", "Straatweg 45", "2222", 10));
    personList.add(new Fielder("Darion Pok", "Straatweg 45", "2222", 11));
    personList.add(new Fielder("Achmed de Bom", "Straatweg 45", "2222", 12)); 

    }

そしてここで、その ArrayList を test というファイルに書き込もうとしています:

public class Main {

public static void main(String[] args)throws Exception {

    Team team = new Team();
    team.init();
    ArrayList<Person> playersData = team.getPersonList();

    try {

       // create a new file with an ObjectOutputStream
       FileOutputStream out = new FileOutputStream("test.txt");
       ObjectOutputStream oout = new ObjectOutputStream(out);

       // write something in the file
       oout.writeObject(playersData);

       // close the stream
       oout.close();

       // create an ObjectInputStream for the file we created before
       ObjectInputStream ois = new ObjectInputStream(new FileInputStream("test.txt"));



    } catch (Exception ex) {
       ex.printStackTrace();
    }

}

}

プログラムを実行すると、次のエラーが発生します。

java.io.NotSerializableException: Coach
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at java.util.ArrayList.writeObject(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
    at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at Main.main(Main.java:24)

ArrayList は Serializable を実装していると思っていたので、なぜ NotSerializableException がスローされるのかわかりません。この例外がスローされる理由を理解していただければ幸いです。

すでにありがとう!

4

2 に答える 2

2

あなたにはインスタンスArrayListが含まれているので、単にクラスを実装する必要があります(おそらくまたは のような使用している他のクラス)。CoachCoachjava.io.SerializableGoalkeeperFielder

Serializable Javadocは次のように述べています。

グラフをトラバースするときに、Serializable インターフェイスをサポートしないオブジェクトに遭遇する場合があります。この場合、NotSerializableException がスローされ、シリアル化できないオブジェクトのクラスが識別されます。

それでも、Java でシリアライゼーションが機能する方法はかなり複雑です。詳細については、http://docs.oracle.com/javase/6/docs/platform/serialization/spec/serialTOC.htmlを参照してください。

于 2013-06-22T15:25:20.290 に答える