簡體   English   中英

Android:套接字通訊

[英]Android:socket communication

我正在嘗試使用android客戶端和java服務器創建簡單的應用程序,當我嘗試讀取服務器回復錯誤:套接字關閉時,android客戶端能夠將消息發送到server(java)。 line(if(((receiveMessage = receiveRead.readLine())!= null))

public class ClientConnectorTask extends AsyncTask<String, Void, Integer> {
    private Socket client;
    private PrintWriter printwriter;
    protected Integer doInBackground(String...strings) {
        // validate input parameters
        if (strings.length <= 0) {
            return 0;
        }
        // connect to the server and send the message
        try {
            client = new Socket("192.168.1.4", 7777);
            printwriter = new PrintWriter(client.getOutputStream(),true);

            //while(true){
            InputStream istream = client.getInputStream();
            BufferedReader receiveRead = new BufferedReader(new InputStreamReader(istream));

            String  receiveMessage;
            while (true){
            //  printwriter.write(strings[0]);
                printwriter.print(strings[0]);
                printwriter.flush();
                printwriter.close();
                if((receiveMessage = receiveRead.readLine()) != null) //receive from server
                {
                    System.out.println(receiveMessage); // displaying at DOS prompt
                } 
            }
            //}

            //client.close();
        } catch (UnknownHostException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return 0;
    }
    protected void onPostExecute(Long result) {
        return;
    }
}

在循環內關閉PrintWriter毫無意義,在readLine()調用之前將其關閉也沒有意義。 關閉Socket的輸入或輸出流將關閉另一個流和套接字。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM