我试图从Java服务器到客户端的交流送5个整数。
这是我的Java代码:
class Server {
public static void main(String args[]) throws Exception {
ServerSocket welcomeSocket = new ServerSocket(8080);
while(true)
{
Socket connectionSocket = welcomeSocket.accept();
System.out.println("welcomeSocket.accept() called");
DataOutputStream outToClient = new DataOutputStream(connectionSocket.getOutputStream());
outToClient.writeInt(1);
outToClient.writeInt(2);
outToClient.writeInt(3);
outToClient.writeInt(4);
outToClient.writeInt(5);
outToClient.close();
connectionSocket.close();
}
}
}
这里是我的C代码:
// the function below is made by made, it creates and return a socket
// AF_INET witch a tcp protocol
int sock = socketClient("localhost",8080);
if (sock < 0) {
printf("client : erreur socketClient\n");
exit(2);
}
char intBufferCoupReq[20];
int data = recv(sock, intBufferCoupReq, 80, 0);
printf("data recieved : %d\n",data);
if( data == -1){
printf("Error while receiving Integer\n");
}
char intBufferCoupReq2[5][4];
int cpt;
int j;
int i = j = 0;
// in this loop I divide my big array of 5 ints into 5 differents
// array to use with ntohl
for(cpt = 0; cpt < 20 ; cpt++){
if(cpt%5==0) i=0;
if(j%4==0) j=0;
intBufferCoupReq2[i][j] = intBufferCoupReq[cpt];
i++;
j++;
}
int receivedInt[5];
for(cpt=0;cpt<5;cpt++){
printf("int n°%d = %d\n",cpt+1,ntohl(*((int *) &intBufferCoupReq2[cpt])));
}
close(sock);
第一次的C客户端发出请求它是有点儿罚款:
data recieved : 20
int n°1 = 4
int n°2 = 3
int n°3 = 2
int n°4 = 1
int n°5 = 5
但第二次(不关闭服务器),我得到这样的:
data recieved : 8
int n°1 = 16384
int n°2 = -1610612736
int n°3 = 11010050
int n°4 = -1342118655
int n°5 = 524519
我与一个Java服务器崩溃“连接重置”的错误。 这两个程序在本地主机在同一台计算机上运行,端口8080。
我一直在试图算出这个数天,但我真的无言以对。 做任何你们拿到了一个忠告?
非常感谢 !