在服务器-客户端应用程序中使用 ObjectInputStream 的 ClassCastException

ClassCastException using ObjectInputStream in server-client application

我正在尝试通过套接字发送一个对象,但是当我想在客户端读取该对象时,我得到了 java.lang.ClassCastException。

我的对象如下,我在两个项目(服务器和客户端)中都有它。

class Data implements Serializable{

    int height;
    int width;
    int max;
    int zoom;
    int start;
    int end;
    int xMove;
    int yMove;

    public Data(int height, int width, int max, int zoom, int start, int end, int xMove, int yMove){
        this.height = height;
        this.width = width;
        this.max = max;
        this.zoom = zoom;
        this.start = start;
        this.end = end;
        this.xMove = xMove;
        this.yMove = yMove;
    }
}

发送部分:

try{
    Data dataToSend = new Data(height, width, max, zoom, start, end, xMove, yMove);
    out.writeObject(dataToSend);
}

接收器部分:

try{
    InputStream is = socket.getInputStream();
    Data dataToRead = (Data)ois.readObject();
}

错误信息:

java.lang.ClassCastException: lab05_server.Data cannot be cast to lab05_kliens.Data

我尝试了所有方法,结果都一样。 我找不到我的错误。

感谢您的帮助。

您需要将相同的 SerializableID 添加到两个数据 类,请查看:this