android java socket写入和接收byte []数据

时间:2016-10-06 07:10:01

标签: java android sockets byte payload

我需要使用我的android应用程序中的套接字将数据包发送到服务器。我只知道数据包布局:

Packet ID 4 bytes | Packet length 4 bytes(minus len + ID) | payload (protobuf message)

关于TLSv1.2连接和自签名证书的全部内容运作良好。例如,我需要发送身份验证数据包 - 如果数据包发送成功,LoginRequest和服务器将使用LoginResponse进行响应。我正在尝试做的是连接到AsyncTask类内的服务器,写入数据并接收响应,但显然我做错了因为我没有得到回应。编写和阅读信息的代码:

LoginRequest protobuf消息:

Protos.LoginRequest loginRequest = Protos.LoginRequest.newBuilder()
                    .setUsername(mailAddress)
                    .setPassword(pass).build();

代码(在doInBackground()方法内):

//TLSSocketFactory is custom SSLSocketFactory class for forcing TLSv1.2 on devices > 16 & < 20
socket = tlsSocketFactory.createSocket("airwave1.exurion.com", 2559);

byte[] payload = loginRequest.toByteArray();

DataOutputStream out = new DataOutputStream(socket.getOutputStream());
InputStream inStream = socket.getInputStream();

out.writeInt(10); //ID of the packet
out.writeInt(payload.length);
out.write(payload);

out.flush();

byte[] data = new byte[100];
int count = inStream.read(data);

out.close();
inStream.close();
socket.close();

正如我所说,我没有得到回应,有时我在阅读消息时也会得到SSLException:

javax.net.ssl.SSLException: Read error: ssl=0xb3a28580: I/O error during system call, Connection timed out

有谁知道如何解决这个问题?

//修订 我发现字节顺序需要在LITTLE_ENDIAN中,所以我尝试使用ByteBuffer:

//based on previous packet layout (4 bytes for ID, 4 bytes for payload length, and payload) - is it ByteBuffer.allocate() fine?
    ByteBuffer buffer = ByteBuffer.allocate(8 + payload.length);
    buffer.order(ByteOrder.LITTLE_ENDIAN);

    buffer.putInt(LoginPacketType.LOGIN_REQUEST.getId());
    buffer.putInt(payload.length);
    buffer.put(payload);

    buffer.rewind();
    byte[] result = new byte[buffer.capacity()]; // Could also use result = buffer.array();
    buffer.get(result);

    out.write(result);

但现在我得到OOM例外:

Failed to allocate a 184549388 byte allocation with 16777216 free bytes and 155MB until OOM

详情: 在写入DataOutputStream之后,我做了:

buffer.clear()
out.flush();

//code for reading from InputStream

现在,在我的日志中多次显示此消息: 启动阻止GC Alloc

并且抛出OOM异常。

2 个答案:

答案 0 :(得分:1)

问题出在LITTLE_ENDIAN和BIG_ENDIAN订单上。服务器以LITTLE_ENDIAN顺序发送响应,所以我稍微重写了你的答案:

int type = inStream.readInt();
type = Integer.reverseBytes(type);
int length = inStream.readInt();
length = Integer.reverseBytes(length);

if (length > 0) {
    byte[] data = new byte[length];
    inStream.readFully(data);
    Protos.LoginResponse response = Protos.LoginResponse.parseFrom(data);
}

感谢您的提示。

答案 1 :(得分:0)

您正在编写数据包类型,长度和有效负载,但您只是在阅读有效负载。您还假设read()填充了缓冲区。

int type = din.readInt();
int length = din.readInt();
byte[] data = new byte[length];
din.readyFully(data);