开发客户端 - 服务器应用程序。客户端是基于Java的,服务器端是Windows中的C ++。
我试图用套接字与他们沟通,但我遇到了一些麻烦。
我已经成功地将客户端与Java Server通信,以测试它是否是我的客户端错误,但事实并非如此,似乎我在C ++版本中没有做到这一点。
java服务器是这样的:
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
public class Server {
public static void main(String[] args){
boolean again = true;
String mens;
ServerSocket serverSocket = null;
Socket socket = null;
DataInputStream dataInputStream = null;
DataOutputStream dataOutputStream = null;
try {
serverSocket = new ServerSocket(12321);
System.out.println("Listening :12321");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
while(again){
try {
System.out.println("Waiting connection...");
socket = serverSocket.accept();
System.out.println("Connected");
dataInputStream = new DataInputStream(socket.getInputStream());
dataOutputStream = new DataOutputStream(socket.getOutputStream());
while (again){
mens = dataInputStream.readUTF();
System.out.println("MSG: " + mens);
if (mens.compareTo("Finish")==0){
again = false;
}
}
} catch (IOException e) {
System.out.println("End of connection");
//e.printStackTrace();
}
finally{
if( socket!= null){
try {
socket.close();
} catch (IOException e) {
// TODO Auto-generated catch block
//e.printStackTrace();
}
}
if( dataInputStream!= null){
try {
dataInputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if( dataOutputStream!= null){
try {
dataOutputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
System.out.println("End of program");
}
}
客户端只是建立连接并发送用户引入的一些消息。
你能不能给我一个类似的工作服务器但是用C ++(在Windows中)? 我不能自己动手。
感谢名单。
答案 0 :(得分:0)
您的问题是您发送的java字符串每个字符可能占用1或2个字节(请参阅bytes of a string in java?)
您需要以ascii字节发送和接收以简化操作,假设data
是您客户端的数据字符串:
byte[] dataBytes = data.getBytes(Charset.forName("ASCII"));
for (int lc=0;lc < dataBytes.length ; lc++)
{
os.writeByte(dataBytes[lc]);
}
byte responseByte = 0;
char response = 0;
responseByte = is.readByte();
response = (char)responseByte;
其中is
和os
分别是客户端DataInputStream
和DataOutputStream
。
您还可以嗅探您的tcp流量,看看发生了什么:)