这篇文章主要讲解了“Java Socket如何实现UDP编程”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java Socket如何实现UDP编程”吧!
一、概述
在 Java 中使用 UDP 编程,仍然需要使用 Socket ,因为应用程序在使用 UDP 时必须指定网络接口 ( IP地址 )和端口号。注意: UDP 端口和 TCP 端口虽然都使用 0 ~ 65535 ,但他们是两套独立的 端口,即一个应用程序用TCP占用了端口 1234 ,不影响另一个应用程序用UDP占用端口 1234 。
二、服务器端
在服务器端,使用 UDP 也需要监听指定的端口。Java提供了 DatagramSocket 来实现这个功能
package com.ljl.udp.demo2;import java.io.IOException;import java.net.DatagramPacket;import java.net.DatagramSocket;import java.net.InetSocketAddress;import java.util.Scanner;public class ChatB {public static void main(String[] args) {Scanner input = new Scanner(System.in);//客户端B监听7788端口try (DatagramSocket socket = new DatagramSocket(7788)) {//提前创建两个Packet数据包分别用于发送和接收DatagramPacket sendPacked = new DatagramPacket(new byte[1024],1024,//数据new InetSocketAddress("192.168.254.163",8899));//目的地DatagramPacket receivePacket = new DatagramPacket(new byte[1024], 1024);DatagramPacket sendPackedx = new DatagramPacket(new byte[1024],1024,//数据new InetSocketAddress("192.168.254.163",6677));//目的地while(true) {//发送System.out.println("你说:");String sendContent = input.nextLine();sendPacked.setData(sendContent.getBytes());socket.send(sendPacked);sendPackedx.setData(sendContent.getBytes());socket.send(sendPackedx);if(sendContent.equals("退下")) {System.out.println("你退出了聊天...");break;}//接收socket.receive(receivePacket);String receiveContent = new String(receivePacket.getData(),receivePacket.getOffset(),receivePacket.getLength());if(sendContent.equals("退下")) {System.out.println("对方退出了聊天...");break;}System.out.println("他说:"+receiveContent);}} catch (IOException e) {e.printStackTrace();}}}
三、客户端
和服务器端相比,客户端使用 UDP 时,只需要直接向服务器端发送 UDP 包,然后接收返回的 UDP 包:
package com.ljl.udp.demo2;import java.io.IOException;import java.net.DatagramPacket;import java.net.DatagramSocket;import java.net.InetSocketAddress;import java.util.Scanner;public class ChatA {public static void main(String[] args) {Scanner input = new Scanner(System.in);//客户端A监听8899端口try ( DatagramSocket socket = new DatagramSocket(8899)) {DatagramPacket sendPacked = new DatagramPacket(new byte[1024], 1024);DatagramPacket receivePacket = new DatagramPacket(new byte[1024], 1024,new InetSocketAddress("192.168.254.163",7788));while(true) {//接收socket.receive(receivePacket);String receiveContent = new String(receivePacket.getData(),receivePacket.getOffset(),receivePacket.getLength());if(receiveContent.equals("退下")) {System.out.println("对方退出了聊天...");break;}System.out.println("他说:"+receiveContent);//发送System.out.println("你说:");String sendContent = input.nextLine();sendPacked.setData(sendContent.getBytes());socket.send(sendPacked);if(sendContent.equals("退下")) {System.out.println("你退出了聊天...");break;}}} catch (IOException e) {e.printStackTrace();}}}
感谢各位的阅读,以上就是“Java Socket如何实现UDP编程”的内容了,经过本文的学习后,相信大家对Java Socket如何实现UDP编程这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!