Java: How to make this Serializable?

耗尽温柔 提交于 2019-12-01 20:33:44

问题


I need the following class to be Serializable.

package helpers;

public class XY implements Comparable<XY>
{
    public int x;
    public int y;

    public XY (int x, int y)
    {
        this.x = x;
        this.y = y;
    }

    public int compareTo( XY other ) 
    {
        String compare1 = this.x + "-" + this.y;
        String compare2 = other.x + "-" + other.y;

        return compare1.compareTo( compare2 );
    }

    public String toString()
    {
        return this.x + "-" + this.y;
    }

}

As of now, I can't send it as an object with outputstream..I´ve tried to implement Serializable, but that didn't work.


回答1:


Implementing Serializable will do the trick, but you must write the object with an ObjectOutputStream, not just an OutputStream.




回答2:


You just need to inherit from java.io.Serializable:

public class XY implements Comparable<XY>, java.io.Serializable

Check more about serialization here.




回答3:


Please see the SerializationUtils API provided by Apache Commons Lang.

This is much safer and more maintenance friendly. :)



来源:https://stackoverflow.com/questions/8116147/java-how-to-make-this-serializable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!