UDP 发送消息

UDP 发送消息

public class UDPreceive {

	public static void main(String[] args) throws Exception {
		//自己的端口
		DatagramSocket socket= new DatagramSocket(9901);
		try {
			   while(true){
					//准备接包
					byte[] butter=new byte[1024];
					DatagramPacket packet=new DatagramPacket(butter, 0,butter.length);
					socket.receive(packet);
					//拆包 获得信息
					byte      [] data =packet.getData();
					String receivedata=new String(data,0,data.length-1);
					
					if(receivedata.equals("Bye")){
						socket.close();
						System.out.println("关闭了接口");
						break;
					}
					else{
						System.out.println("消息:"+receivedata);
					}
			    }
		} catch (Exception e) {
			// TODO 自动生成的 catch 块
			e.printStackTrace();
		}finally {
			//先开后关
			socket.close();
			System.out.println("关闭了接口");
		}
	}

}
public class UDPSender {
	public static void main(String[] args) throws Exception {
		// 自己的 端口号
		
		DatagramSocket socket=new DatagramSocket(2010);
		//控制台输入
		BufferedReader buffere=new BufferedReader(new InputStreamReader(System.in));
			//准备数据
    while(true){
		
		//打包
		String string=buffere.readLine();
		byte [] data=string.getBytes();
		//填写地址
		//InetSocketAddress socketIP=;
		//包上车
		DatagramPacket packet = new DatagramPacket(data,0,data.length,new InetSocketAddress("localhost",9901));

	    //发车
		socket.send(packet);
		
		if(string.equals("Bye")){
			break;
		}
    }
		socket.close();
		System.out.println("关闭了接口");
	}

}

当从 UDPSender类中输入 “Bye”时, UDPreceive类中的 if语句出现异常,使得UDPreceive不能正常退出。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值