UDP2_传一个long类型的数_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > UDP2_传一个long类型的数

UDP2_传一个long类型的数

 2017/8/13 0:31:23  i拾贝  程序员俱乐部  我要评论(0)
  • 摘要:UDP2_传一个long类型的数UDP2_传一个long类型的数TestUDPServer.javaimportjava.net.*;importjava.io.*;publicclassTestUDPServer{publicstaticvoidmain(Stringargs[])throwsException{bytebuf[]=newbyte[1024];DatagramPacketdp=newDatagramPacket(buf,buf.length)
  • 标签:一个

UDP2_传一个long类型的数

?

UDP2_传一个long类型的数

TestUDPServer.java

class="java">import java.net.*;
import java.io.*;

public class TestUDPServer
{
	public static void main(String args[]) throws Exception
	{
		byte buf[] = new byte[1024];
		DatagramPacket dp = new DatagramPacket(buf, buf.length);
		//UDP的5678端口
		DatagramSocket ds = new DatagramSocket(5678);
		while(true)
		{
			ds.receive(dp);
			//打印字符
			//System.out.println(new String(buf,0,dp.getLength()));
			
			ByteArrayInputStream bais = new ByteArrayInputStream(buf);
			DataInputStream dis = new DataInputStream(bais);
			System.out.println(dis.readLong());
		
		}
	}
}

?

F:\java\socket>javac TestUDPServer.java

F:\java\socket>java TestUDPServer
10000

?

?

TestUDPClient.java

import java.net.*;
import java.io.*;

public class TestUDPClient
{
	public static void main(String args[]) throws Exception
	{
		//定义一个long类型的数
		long n = 10000L;
		//字节数组
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		DataOutputStream dos = new DataOutputStream(baos);
		//将n写入字节数组
		dos.writeLong(n);
		
		byte[] buf = baos.toByteArray();
		System.out.println(buf.length);
		
		//byte[] buf = (new String("Hello")).getBytes();
		DatagramPacket dp = new DatagramPacket(buf, buf.length, 
											   new InetSocketAddress("127.0.0.1", 5678)
											   );
		DatagramSocket ds = new DatagramSocket(9999);
		ds.send(dp);
		ds.close();
		
		
	}
}

?

f:\java\socket>javac TestUDPClient.java

f:\java\socket>java TestUDPClient
8

f:\java\socket>

?

?

上一篇: GUI(Graphical User Interface图形用户界面) 下一篇: 没有下一篇了!
发表评论
用户名: 匿名