Java中的套接字编程用于发送和接收字节数组

时间:2016-04-07 14:14:45

标签: java android sockets tcpclient

我是Android的新手,我有套接字编程的问题。

class ClientAsycTask extends AsyncTask<String,Void,String>{
    ProgressDialog progress;
    @Override
    protected void onPreExecute() {
        progress = new ProgressDialog(MainActivity.this);
        progress.setMessage("Connection Server Please wait");
        progress.setIndeterminate(true);
        progress.show();
    }

    @Override
    protected String doInBackground(String... params) {
        String result = null;
        Socket socket = new Socket();
        String host = "systemteq.gotdns.com";
        Integer port = 4999;
        DataOutputStream s_out = null;
        BufferedReader s_in = null;
        try{
            socket.connect(new InetSocketAddress(host, port));
            s_out = new DataOutputStream( socket.getOutputStream());
            s_in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
            byte[] messages = new byte[]{0x10,0x01,0x03,0x00,0x00};
            s_out.write(messages);
            String response;
            while((response = s_in.readLine())!=null){
                result += response;
            }
            //result = "Successfully"+s_in.read();//s_in.readLine();
            socket.close();

        }catch (Exception e){
            Toast.makeText(MainActivity.this,"systemteq.gotdns.com:4999 not connected",Toast.LENGTH_SHORT).show();
        }
        return result;
    }

    @Override
    protected void onPostExecute(String s) {
        if(progress.isShowing()){
            progress.dismiss();
        }
        Toast.makeText(MainActivity.this,"Connected "+s,Toast.LENGTH_SHORT).show();
        tv.setText(s);
    }
}

上面的代码向服务器发送十六进制代码,服务器用一些十六进制代码响应,比如10 01 20 10 00. [五个字节]。

但是当我在上面运行时,代码进度对话框永远不会关闭。在解决之后,我发现s_in.readLine()在从服务器读取响应时遇到了一些问题。

我已经经历了很多链接,但在解决这个问题时我没有成功。请帮我解决这个问题。

更新: -

使用DataInputStream后: -

s_in = new DataInputStream(socket.getInputStream());
            byte[] messages = new byte[]{0x10,0x01,0x03,0x00,0x00};
            s_out.write(messages);
            String response;
            System.out.println("START");
            result = s_in.readUTF();

它仍然没有响应字节。虽然请求成功。

更新2

byte m = s_in.readByte();
result = Byte.toString(m);

现在我得到字节值,但我应该得到5个字节,而不是得到5个字节,只得到一个。请帮帮我这件事

1 个答案:

答案 0 :(得分:3)

如果您正在等待二进制数据,请不要使用InputStreamReader,请尝试使用DataInputStream readLine()等待'\ n','\ r',“\ r \ n”或读者的结尾。

更新:如果您知道确切的字节数,请将它们读入数组。

byte[] buf = new byte[5];
s_in.read(buf);