本帖最后由 张向辉 于 2013-2-3 12:12 编辑
- import java.net.*;
- public class SendUdp {
- public static void main(String [] args) throws Exception{
- DatagramSocket ds = new DatagramSocket();
- ds.send(new DatagramPacket("黑马".getBytes(),"黑马".length,InetAddress.getByName("127.0.0.1"),3000));
- System.out.print("send zhl");
- ds.close();
- }
- }
复制代码 上面的代码发送到接收方时只接收到一个”黑“字!
怎么回事呢! |
|