我正在尝试发送以下内容,但我在下面收到以下错误消息。 TableUser实现了可序列化,但似乎问题是FXCollections,但我不知道如何序列化。
这是TableUser类。
package application;
import java.io.Serializable;
public class TableUser implements Serializable{
private static final long serialVersionUID = 1L;
private String username = "";
public TableUser(String name) {
this.username = name;
}
public String getUsername(){
return username;
}
public void setUsername(String user){
username = user;
}
}
//NOT apart of TableUser - This is the code that isn't working
private static ObservableList<TableUser> clientList = FXCollections.observableArrayList();
Object[] data = new Object[2];
data[0] = "CLIENTS";
data[1] = clientList;
for(int i = 0; i < clients.size(); i++){
clients.get(i).sendData(data);
}
//I don't know if this helps but here is the sendData method
protected void sendData(Object[] data){
try {
oos.writeObject(data); //ServerMultiClient.java:286
oos.reset();
} catch (IOException e) {
e.printStackTrace();
}
}
//This is from the Client application that is also part of the issue
if((fromServer = (Object[]) ois.readObject()) != null){ //Controller.java:109
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.sun.javafx.collections.ObservableListWrapper
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readArray(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readObject(Unknown Source)
at application.ChatRoomController$2.run(Controller.java:109)
at java.lang.Thread.run(Unknown Source)
Caused by: java.io.NotSerializableException: com.sun.javafx.collections.ObservableListWrapper
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeArray(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at application.ServerMultiClient.sendData(ServerMultiClient.java:286)
at application.ServerMultiClient.run(ServerMultiClient.java:236)
答案 0 :(得分:1)
当尝试序列化的对象未实现NotSerializableException
类时,抛出Serializable
。在您的情况下,由于它告诉您ObservableListWrapper
不可序列化,我推断clientList
不可序列化。
您可以使用恰好实现ObservableList
的{{1}}列表,而不是使用JavaFX java.util.ArrayList
。
答案 1 :(得分:1)
鉴于ObservableListWrapper
不可序列化,您可以尝试循环浏览TableUser
个对象,然后将它们逐个添加到data
这样的事情:
Object[] data = new Object[clientList.size()+1];
data[0] = "CLIENTS";
int counter = 1;
for(TableUser tu: clientList) {
data[counter] = tu;
counter++;
}