我的目标是创建一个从ObjectInputStream接收Message对象的服务器,然后将Message对象回显到ObjectOutputStream。
在写入消息时,客户端将Message类型对象发送到服务器,然后接收所接收的Message类型对象(以及连接到服务器的其他客户端的Message类型对象)并将其解码为客户端的gui。
Message对象有一个String和其他字体信息。
我的问题是服务器不回显Message类型对象。我有一种感觉,我没有正确地投射,但在这一点上,我只是在尝试不同的东西。
这个想法是让服务器从客户端变得透明 - 这是可能的,即:服务器对TestObject类一无所知?有办法解决这个问题吗?
服务器代码:
import java.net.*;
import java.io.*;
public class Server
{
public SimpleServer() throws IOException, ClassNotFoundException
{
ServerSocket ss = new ServerSocket(4000);
Socket s = ss.accept();
ObjectInputStream ois = new ObjectInputStream(s.getInputStream());
ObjectOutputStream oos = new ObjectOutputStream(s.getOutputStream());
// the 'echo' functionality of the server
Object to = null;
try
{
to = ois.readObject();
}
catch (ClassNotFoundException e)
{
System.out.println("broke");
e.printStackTrace();
}
oos.writeObject(to);
oos.flush();
// close the connections
ois.close();
oos.close();
s.close();
ss.close();
}
public static void main(String args[]) throws IOException, ClassNotFoundException {
new SimpleServer();
}
}
客户代码:
import java.net.*;
import java.io.*;
public class Client
{
public SimpleClient() throws IOException, ClassNotFoundException
{
Socket s = new Socket( "localhost", 4000 );
ObjectOutputStream oos = new ObjectOutputStream(s.getOutputStream());
ObjectInputStream ois = new ObjectInputStream( s.getInputStream());
TestObject to = new TestObject( 1, "object from client" );
// print object contents
System.out.println( to );
oos.writeObject(to);
oos.flush();
Object received = ois.readObject();
// should match original object contents
System.out.println(received);
oos.close();
ois.close();
}
public static void main(String args[]) throws IOException, ClassNotFoundException
{
new SimpleClient();
}
}
class TestObject implements Serializable
{
int value ;
String id;
public TestObject( int v, String s )
{
this.value=v;
this.id=s;
}
@Override
public String toString()
{
return "value=" + value +
", id='" + id;
}
}
感谢您的时间!
编辑: 这是创建的输出:
当客户端连接到服务器时,我收到此消息: 线程“main”中的异常java.lang.ClassNotFoundException:TestObject
这是我运行客户端时的客户端输出: value = 1,id ='来自客户端的对象线程中的异常“main”java.net.SocketException:连接重置
答案 0 :(得分:1)
第一件事:TestObject
类在您的服务器代码中不可见。这就是它投掷ClassNotFoundException
的原因。
解决方法:将您的TestObject
类放在单独的文件中,然后使用import
语句导入该类。
第二:尝试在服务器端打印接收对象的值。并对您的客户端代码进行了更改,如下所示
Object received = null;
while(received==null)
{
received = ois.readObject();
}
System.out.println(received);
答案 1 :(得分:0)
我没有看到您的代码有任何问题,除非您需要在服务器和客户端中写入后清除oos
流。
oos.flush();
另外,为了使服务器对客户端透明,您可以避免在服务器上进行转换(这是您已经在做的),并且终点应该担心作为您的客户端的TestObject
。