在关闭Socket之前,我可以通过TCP发送数据吗?

时间:2018-06-12 14:59:12

标签: java sockets tcp communication

我会更好地解释我的问题,并且我预防性地为我糟糕的英语道歉。我正在练习java.net包(这是我下一次大学考试的论点),我试图更好地控制客户端和服务器设备之间的通信。更准确地说,在尝试将close()方法调用到相关的Socket之前,我尝试使用TCP连接从3个不同的时间发送3个不同的字符串,从服务器到客户端。我发现我的剧本并没有像我想象的那样奏效。在客户端,我收到所有3个字符串,但只有当我关闭Socket时。我希望在将它们放入服务器的输出流后立即收到所有3条消息。我将发布服务器脚本的代码。

在批评我之前,我在写一个新问题之前先阅读this问题,但它并没有解决我的问题 下面的脚本是管理我在服务器端的连接的Thread的run()方法的主体。

try{
        //Dormi per un pò..

        System.out.println("Il Client con ip "+ind+" ed associato all' Handler #"+id+" è in attesa");
        Thread.sleep(5000);
        PrintWriter pw=new PrintWriter(new OutputStreamWriter(s.getOutputStream()));
        pw.println("Hi "+ind); //ind is the InetAddress of the connected client
        pw.flush();
        Thread.sleep(5000);
        pw.write("what's up?\n");
        pw.flush();
        Thread.sleep(5000);
        pw.write("I gotta go. Bye\n");
        pw.flush();
        pw.close();
        s.close();
        System.out.println("Il Client associato all'Handler #"+id+" si è disconnesso");
    }catch(Exception e){
        e.printStackTrace();
    }

以下是客户端代码:

package socket;


import java.net.*;
import java.io.*;
public class MultiThreadClient extends Thread{

   private byte[] address={(byte) 192, (byte)168, (byte) 1, (byte)15};
   private int destPort=2000;

   public MultiThreadClient(){
       super();
   }

   public void run(){
       try{
           InetAddress ip=InetAddress.getByAddress(address);
           Socket s=new Socket(ip,destPort);
           s.setReuseAddress(true);
           BufferedReader br=new BufferedReader(new InputStreamReader(s.getInputStream())); 
           String message1=br.readLine();
           String message2=br.readLine();
           String message3=br.readLine();
           System.out.println(message1);
           System.out.println(message2);
           System.out.println(message3);

           s.close();
       }catch(Exception e){
           e.printStackTrace();
       }
  }


  public static void main(String[]args){
  //for(int i=0;i<3;i++){
      MultiThreadClient mtc=new MultiThreadClient();
      mtc.start();
  // }
  }

}

1 个答案:

答案 0 :(得分:1)

您的代码运行正常 - 您只是在readLine方法上阻塞了3次,然后打印您的响应(此时套接字在服务器端关闭)。

试试这个:

        String message1 = br.readLine();
        System.out.println(message1);
        String message2 = br.readLine();
        System.out.println(message2);
        String message3 = br.readLine();
        System.out.println(message3);

我的另一个提示是在finally区块进行清理。

try { ... }
catch { ... }
finally {
    s.close();
}

这样即使抛出异常,也会清理资源。