ObjectInputStream阻塞我的套接字

时间:2017-11-13 10:12:28

标签: java multithreading sockets objectinputstream objectoutputstream

我想利用ObjectInputStream和ObjectOutputStream通过Socket发送数据。我在互联网上看了一下,但即使有几个解释,我也无法解决我的问题。

这是我的构造继承:

public class Server {
    //Entry point of the application
    public static void main(String[] args) {
        Integer port;
        if(args.length<=0) 
            port=new Integer("3000"); // si pas d'argument : port 3000 par d�faut
        else 
            port = new Integer(args[0]); // sinon il s'agit du num�ro de port pass� en argument

        ClientListener server = new ClientListener(port); // instance de la classe principale
    }
}

public ClientListener(Integer port) { // THIS IS THE MAIN THREAD
        try
        {
          server = new ServerSocket(port.intValue()); // ouverture d'un socket serveur sur port
          new IOCommande(this); // RUN IN ANOTHER THREAD
          while (true) // attente en boucle de connexion (bloquant sur ss.accept)
          {
            new ClientSocketStream(server.accept(),this); // un client se connecte, un nouveau thread client est lanc�
          }
        }
        catch (Exception e) {
            //server.close();
        }
    }

public ClientSocketStream(Socket incomingClient, ClientListener ref) { // THIS IS NOT A THREAD
        this.client = incomingClient;
        this.server = ref;

        //Ajout des IO et generation d'un UID
        try{
            out = new ClientOutputWriter(client.getOutputStream());
            in = new ClientInputReader(((MessageReader)this),client.getInputStream());

            // ajoute du client dans la liste
            id = server.addClient(this);
        }catch (IOException e){ 
            e.printStackTrace();
        }finally {// En cas de probl�me (que le client s'est d�connect�)
            try {
                server.removeClient(id);
                client.close();
            }catch(IOException e) {

            }
        }
    }

public ClientInputReader(MessageReader client, InputStream in) throws IOException { //THIS IS A THREAD
        this.client = client;
        try {
            this.in = new ObjectInputStream(in);
        }catch(Exception e){
            e.printStackTrace();
        }
        this.runtime = new Thread(this);
        this.runtime.start();
    }

public ClientOutputWriter(OutputStream out) throws IOException { //THIS IS NOT A THREAD
        this.out = new ObjectOutputStream(out);
    }

请假设套接字完全正常工作,因此我可以使用Telnet进行连接。

因此,在ClientInputReader类中实现ObjectInputStream时,我会陷入困境。构造函数似乎是阻塞的,我无法正确使用它。

解决方案:

尝试创建另一个可运行的项目,而不是使用telnet进行测试。不要忘记在ObjectInputStream 之前声明objectOutputStream,并执行以下操作:

public class TestClient {
    //Entry point of the application
    public static void main(String[] args) {
        try {
            Socket socket = new Socket("127.0.0.1", 3000);
            ObjectOutputStream out = new ObjectOutputStream(socket.getOutputStream());
            ObjectInputStream in = new ObjectInputStream(socket.getInputStream());
            out.writeObject(new Message("test"));
            Message msg = (Message)in.readObject();
            socket.close();
        }catch(Exception e){}
    }
}

1 个答案:

答案 0 :(得分:1)

您的客户端没有构建ObjectOutputStream,因此您的ObjectInputStream构造函数因Javadoc中解释的原因而被阻止。