我设法通过了客户端服务器 websocket 连接的握手阶段,但现在我在将数据从服务器发送到客户端时遇到了问题。这是发送数据的代码:
public void Send(String s)throws IOException{
os = socket.getOutputStream();
byte[] rawData = s.getBytes("UTF-8");
int frameCount = 0;
byte[] frame = new byte[10];
frame[0] = (byte) 129;
if(rawData.length <= 125){
frame[1] = (byte) rawData.length;
frameCount = 2;
}else if(rawData.length >= 126 && rawData.length <= 65535){
frame[1] = (byte) 126;
byte len = (byte) rawData.length;
frame[2] = (byte)((len >> 8 ) & (byte)255);
frame[3] = (byte)(len & (byte)255);
frameCount = 4;
}else{
frame[1] = (byte) 127;
byte len = (byte) rawData.length;
frame[2] = (byte)((len >> 56 ) & (byte)255);
frame[3] = (byte)((len >> 48 ) & (byte)255);
frame[4] = (byte)((len >> 40 ) & (byte)255);
frame[5] = (byte)((len >> 32 ) & (byte)255);
frame[6] = (byte)((len >> 24 ) & (byte)255);
frame[7] = (byte)((len >> 16 ) & (byte)255);
frame[8] = (byte)((len >> 8 ) & (byte)255);
frame[9] = (byte)(len & (byte)255);
frameCount = 10;
}
int bLength = frameCount + rawData.length;
byte[] reply = new byte[bLength];
int bLim = 0;
for(int i=0; i<frameCount;i++){
reply[bLim] = frame[i];
bLim++;
}
for(int i=0; i<rawData.length;i++){
reply[bLim] = rawData[i];
bLim++;
}
System.out.println(frame);
os.write(reply);
os.flush();
}
那应该将字符串 s 发送给客户端。我可以发送 9 个字节的数据,但测试客户端在 echo websocket 网站上没有收到它,如果我发送第十个字节,客户端会断开连接并说“错误:未知”。知道我在做什么错吗?提前致谢!斯莫列特。