我的C端有一个SSL功能,它只接收发送的确切字节数。问题是我正在发送字符串&来自我的servlet的不同字节长度的JSON。
我的方法:我先发送每个字符串的长度然后发送实际消息。
//For Json String (349 bytes)
outputstreamwriter.write(jsonLength);
outputstreamwriter.write(jsonData);
outputstreamwriter.flush();
// For other request strings
final String path = request.getPathInfo();
String all_Users = "GET ALL USERS";
String user_length = Integer.toString(all_Users.length());
String all_Keys = "GET ALL KEYS";
String key_length = Integer.toString(all_Keys.length());
if (path == null || path.endsWith("/users"))
{ outputstreamwriter.write(user_length);
outputstreamwriter.write(all_Users);
}
else if (path.endsWith("/keys")) {
outputstreamwriter.write(key_length);
outputstreamwriter.write(all_Keys);
}
在C端:我首先读取传入字符串长度的传入字节,然后再次调用该函数以期望该消息。现在,我的Json是349而其他请求是12.这些分别是3和2个字节。
debug_print("Clearing Buffer\n", NULL);
memset(inBuf, 0, 1024);
ssl_recv_exactly(rs_ssl, inBuf, 2, &ssllog))
lengthValue = atoi(inBuf);
printf("successfully received %d bytes of request:\n<%s>\n", lengthValue, inBuf);
}
if (lengthValue == 13)
{
// Call this function
else if (lengthValue == 12)
{
// call this function
}
当前的解决方案:我在我的2字节请求中添加一个零,使它们成为3个字节。这样做的更聪明的方法是什么?
答案 0 :(得分:0)
按照Serge和Drew的建议,我可以使用Binary方法做到这一点。以下是我以二进制格式发送字符串的方式:
String user_length = String.format("%9s",
Integer.toBinaryString(all_Users.length()).replace(' ', '0'));