0

我开始编写我的第一个 Java 网络程序,长话短说我很难确保我采用了正确的方法。我们的教授给了我们一个服务器程序来测试这个 UDP 客户端,但是我遇到了一些我似乎无法解决的错误。具体来说,我得到 IO 异常,“连接被拒绝”或“没有路由到主机”异常。

public class Lab2Client {
/**
 * @param args[1] == server name, args[2] == server port, args[3] == myport
 */
public static void main(String[] args) {
    //Serverport is set to 10085, our client is 10086
    try {
        Socket echoSocket = new Socket(args[0],Integer.parseInt(args[2]));
        System.out.println("Server connection Completed\n");
        DataOutputStream output = new DataOutputStream(echoSocket.getOutputStream());
        byte[] toSend = new byte[5];
        toSend[0] = 12; toSend[1] = 34;//Code Number
        toSend[2] = 15;//GroupId
        toSend[3] = 86;toSend[4] = 100;//Port number in Little Endian Order
        output.write(toSend);

        System.out.println("Sent Request. Waiting for reply...\n");

        DataInputStream input = new DataInputStream(echoSocket.getInputStream());

        byte[] toRecieve = new byte[]{0,0,0,0,0,0,0,0}; 
        input.read(toRecieve);
        checkMessage(toRecieve);            
    }
    catch (UnknownHostException e) {
        System.err.println("Servername Incorrect!");
        System.exit(1);
    }
    catch (IOException e){
        System.err.println("IO Exception. Exiting...");
        System.err.println(e);
        System.exit(1);
    }
}

我也有一些关于在 Java 中接收消息的实现的问题。我将得到一个数据报,其中包含:

a) 3个格式化字节(对问题不重要)以及IP和端口号

或者

b) 3 个格式化字节和一个端口。

使用 DataInputStream 是正确的方法吗?我知道使用具有 9 个元素的数组是惰性的,而不是动态分配一个 5 或 9 的数组,但现在我只是想让它工作。话虽这么说,有没有人会为此提出不同的方法?

4

2 回答 2

2

您不需要包装Socket.getOuputStream()with返回的流DataOutputStream- 它已经是DataOutputStream

在这一行:

Socket echoSocket = new Socket(args[0],Integer.parseInt(args[2]));

我想它应该是 args[1],而不是 args[0]。

在这里,您必须将整数值转换为其字节表示:

   toSend[3] = 10086 & 0xFF;toSend[4] = 10086>>8; //Port number in Little Endian Order

回答您的问题:案例b,因为您没有发送IP

于 2012-10-01T01:06:32.987 回答
0

以为我会把它留给后代。问题很简单,我是个傻瓜,没有早点注意到它。

我测试它的正确程序使用了 UDP 协议,并且这个程序是用 TCP 编写的。更正后的代码是:

public class Lab2Client {
/**
 * @param args[0] == server name, args[1] == server port, args[2] == myport
 */
public static void main(String[] args) {
    //Serverport is 10085, our client is 10086
    try {
        DatagramSocket clientSocket = new DatagramSocket();
        InetAddress IPAddress = InetAddress.getByName(args[0]);
        int portToSend = Integer.parseInt(args[2]);
        System.out.println("Clent Socket Created");
        byte[] toSend = new byte[5];
        toSend[0] = 0x12; toSend[1] = 0x34;//Code Number
        toSend[2] = 15;//GroupId, f in hex
        toSend[3] = 0x27;toSend[4] = 0x66;
        System.out.println("Byte Array Constructed");

        DatagramPacket sendPacket = new DatagramPacket(toSend, toSend.length, IPAddress, Integer.parseInt(args[1]));
        clientSocket.send(sendPacket);          
        System.out.println("Sent Request. Waiting for reply...\n");

        DataInputStream input = new DataInputStream(echoSocket.getInputStream());
        toRecieve can either be an error message, a return of what we sent,
        or a byte stream full of IP info and port numbers.
        the "heavy" byte stream is either 4 for IPv4 of 16 for IPv6, 2 bytes for port,
        and the magic number (2 bytes) for a total of 9-20 bytes*/

        byte[] toRecieve = new byte[9];
        DatagramPacket receivePacket = new DatagramPacket(toRecieve, toRecieve.length);
        clientSocket.receive(receivePacket);            
        checkMessage(toRecieve);            
    } //and so on and so forth...

感谢@Serge 的帮助,尽管没有人能正确回答我的问题。您建议的字节移位也很重要。

于 2012-10-08T22:25:56.977 回答