使用Java中的套接字编程将数据流从客户端程序(在VM中运行)发送到服务器程序(在主机OS上)

时间:2017-08-16 10:46:12

标签: java sockets client-server bufferedreader data-stream

客户端套接字程序(在Windows VM中)根据以下代码生成1到10的整数

public class ClientSocket {

    public static void main(String[] args)

    {

try{
    InetAddress inetAddress = InetAddress.getLocalHost();
    String clientIP = inetAddress.getHostAddress();
    System.out.println("Client IP address " + clientIP);

   Integer dataSendingPort ;
   dataSendingPort = 6999 ;

    Socket socket = new Socket("192.168.0.32",dataSendingPort);
    String WelcomeMessage = " hello server from " + clientIP ;


 BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream()));

 if(socket.isConnected()){
     System.out.println("connection was successful");
 }
 else{
     System.out.println("Error- connection was not successful");
 }


 for (int x= 0 ; x< 10 ; x++){
     bufferedWriter.write(x);
     bufferedWriter.flush();
 }

    bufferedWriter.close();
}
catch (IOException e){
    System.out.println(e);
}// catch
        finally{

    System.out.println("closing connection");

}

    } // main

} // class

我的服务器套接字程序在Mac OS上作为主机运行,其代码如下所示

 public class MyServer {

        public static void main(String[] args) throws Exception {


           try {
// get input data by connecting to the socket


                InetAddress inetAddress = InetAddress.getLocalHost();
                String ServerIP = inetAddress.getHostAddress();

               System.out.println("\n server IP address = " + ServerIP);

               Integer ListeningPort ;
               ListeningPort = 6999 ;

               ServerSocket serverSocket = new ServerSocket(ListeningPort);

               System.out.println("server is receiving data on port # "+ ListeningPort +"\n");

               // waiting for connection form client

               Socket socket = serverSocket.accept();


               if(socket.isConnected()){

                   System.out.println("Connection was successful");
               }
               else {
                   System.out.println("connection was not successful");
               }



              BufferedReader input = new BufferedReader(new InputStreamReader(socket.getInputStream()));

    Integer s = 0 ;

       while (( s = input.read()) >= 0){

           System.out.println(input.read());
       }
           } //try

            catch (IOException e)
            {
                System.out.println(e);

            } // catch


        } //main
    } //socket class

问题是当我使用while循环并接收第一个值而不使用循环时,我收到的输出为-1。

  

但是,我能够从客户端向服务器发送单个值,但是   如何从客户端发送值流并在服务器上打印   侧。

建议非常欢迎

1 个答案:

答案 0 :(得分:1)

  • -1表示流结束。
  • 关闭股票的输入或输出流将关闭套接字。
  • socket.isConnected()在您测试它时不可能是假的。
  • input.ready()不是对流结束,消息结束或传输结束的测试,或者根本不是任何有用的测试。
  • 不要在内圈冲洗。