UDP发送和接收

UDP Sending and Receiving

我正在研究多种方法来做到这一点,helped/worked Java UDP 数据包没有任何新内容。

我的 Android 代码是通过服务启动的,它在新线程上运行。

等待代码:

        try {
            int port = 58452;

            // Create a socket to listen on the port.
            DatagramSocket dsocket = new DatagramSocket(port);

            // Create a buffer to read datagrams into. If a
            // packet is larger than this buffer, the
            // excess will simply be discarded!
            byte[] buffer = new byte[2048];

            // Create a packet to receive data into the buffer
            DatagramPacket packet = new DatagramPacket(buffer, buffer.length);

            // Now loop forever, waiting to receive packets and printing them.
            while (true) {
                // Wait to receive a datagram
                dsocket.receive(packet);

                // Convert the contents to a string, and display them
                String msg = new String(buffer, 0, packet.getLength());
                System.out.println(packet.getAddress().getHostName() + ": "
                        + msg);

                // Reset the length of the packet before reusing it.
                packet.setLength(buffer.length);
            }
        } catch (Exception e) {
            System.err.println(e);
        }

发送代码:

 try {
      String host = "MY PHONES IP";
      int port = 58452; //Random Port

      byte[] message = "LAWL,LAWL,LAWL".getBytes();

      // Get the internet address of the specified host
      InetAddress address = InetAddress.getByName(host);

      // Initialize a datagram packet with data and address
      DatagramPacket packet = new DatagramPacket(message, message.length,
          address, port);

      // Create a datagram socket, send the packet through it, close it.
      DatagramSocket dsocket = new DatagramSocket();
      dsocket.send(packet);
      dsocket.close();
      System.out.println("Sent");
    } catch (Exception e) {
      System.err.println(e);
    }
  }

发送正常,但 Android 收不到。请帮忙!

还有我的 Logcat 输出:http://pastebin.com/Rfw5mSKV

谢谢 -融合

http://systembash.com/content/a-simple-java-udp-server-and-udp-client/

我用过它,效果很好!感谢 /u/TarkLark 或 Reddit!