문제

I want to serialize the Arraylist of type ArrayList<Class> and the class contains two Arraylist of primitive type

public class Keyword {

    private long id;
    private long wid;
    private String name;
    private ArrayList<Integer> rank;
    private int month;
    private float avg;
    private ArrayList<String> date;
        ... and so on
}

How can i do that?

Lots of thanks in advance

도움이 되었습니까?

해결책

If you want to use Serializable, you should have no problems, because ArrayList is Serializable just as String and every primitive type. public class Keyword implements Serializable {} should do. You can read more about this method here. However there are a lot of other options for serialization. So please be more specific.

다른 팁

Implement and Interface public class Keyword implements Serializable {} and Simply Use the method of "Object output stream" and "Object input stream" to Serialize and De-serialize the object.

and Arrylist can be Serialize as normal any data type can serialized.

inherit the serialization interface in the that class which calss object you want to serialize.

after that use the ObjectOutput for serialize the object and use the writeObject method for serialize the object.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top