码迷,mamicode.com
首页 > 编程语言 > 详细

Java中的网络编程-3

时间:2017-06-19 22:06:53      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:ima   效率   close   网络编程   网络   tag   logs   stack   cep   

UDP:不可靠, 效率高, 数据报/非连接

Demo_1:

Server 端:

import java.io.IOException;
import java.net.*;
public class TestUDPServer {
	public static void main(String[] args) {
		byte buf[] = new byte[1024];
		try {
			DatagramSocket ds = new DatagramSocket(5678);
			DatagramPacket dp = new DatagramPacket(buf, buf.length);
			while(true){
				try {
					ds.receive(dp);
					System.out.println(new String(buf,0,dp.getLength()));
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		} catch (SocketException e) {
			e.printStackTrace();
		}
	}
}

 Client 端:

import java.io.IOException;
import java.net.*;
public class TestUDPClient {
	public static void main(String[] args) {
		byte[] buf = (new String("hello java")).getBytes();
		DatagramPacket dp = new DatagramPacket(buf, buf.length, new InetSocketAddress("192.168.56.1", 5678));
		DatagramSocket ds;
		try {
			ds = new DatagramSocket(9999);
			try {
				ds.send(dp);
			} catch (IOException e) {
				e.printStackTrace();
			}
			ds.close();
		} catch (SocketException e) {
			e.printStackTrace();
		}
	}
}

 运行结果:

技术分享

Java中的网络编程-3

标签:ima   效率   close   网络编程   网络   tag   logs   stack   cep   

原文地址:http://www.cnblogs.com/bosongokay/p/7050571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!