guys! I am write a simple program to send a message to a Game server(Counter-Strike), that message is used to query server information, it has a fixed format:
0xff, 0xff, 0xff, 0xff, 0x54, 0x53, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x20, 0x45, 0x6e, 0x67, 0x69,
0x6e, 0x65, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79,
0x00
My java program:
import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
public class Test {
private static DatagramSocket ds;
/**
* @param args
*/
public static void main(String[] args) {
try {
ds = new DatagramSocket(27022);
byte[] data;
// TSource Engine Query
char peer0_0[] = {
0xff, 0xff, 0xff, 0xff,
0x54, 0x53, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x20,
0x45, 0x6e, 0x67, 0x69,
0x6e, 0x65, 0x20, 0x51,
0x75, 0x65, 0x72, 0x79, 0x00
};
data = new String(peer0_0).getBytes();
System.out.println("send: " + new String(data));
DatagramPacket dp = new DatagramPacket(data, 0, data.length, InetAddress.getByName("219.133.59.20"), 27021);
ds.send(dp);
byte[] rec = new byte[1024];
DatagramPacket dp2 = new DatagramPacket(rec, 1024);
ds.receive(dp2);
System.out.println("receive: " + new String(rec));
ds.close();
} catch (IOException e) {
e.printStackTrace();
if(ds != null) ds.close();
}
}
}
but when I run it, I use wireshark to capture the packet, I got this :

the first four bytes are 0x3f not 0xff, so what’s problem? I am running java 6 on windows 7 Chinese edition.
The conversion from
char[]tobyte[]viaStringis not guaranteed to be lossless, since it involves charset conversions.Try declaring
peer0_0[]as abytearray and working with it directly.