UDP,User Datagram Protocol,用戶數(shù)據(jù)報(bào)協(xié)議,它屬于傳輸層的協(xié)議。在IP的數(shù)據(jù)報(bào)服務(wù)上又添加了復(fù)用、分用和差錯(cuò)檢測的服務(wù)。下面,將使用Java代碼來展示基于UDP來實(shí)現(xiàn)一個(gè)簡單的聊天室功能,供大家學(xué)習(xí)參考。
項(xiàng)目結(jié)構(gòu)
data.java
package udp;
import java.net.InetAddress;
public class data {
InetAddress Address;
int Port;
public InetAddress getAddress() {
return Address;
}
public void setAddress(InetAddress address) {
Address = address;
}
public int getPort() {
return Port;
}
public void setPort(int port) {
Port = port;
}
}
服務(wù)器端
Server.java
package udp;
import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.SocketException;
import java.util.ArrayList;
public class Server {
DatagramSocket socket = null;
ArrayList<data> client;
public Server() {
try {
socket = new DatagramSocket(8888);
} catch (SocketException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
client = new ArrayList<data>();
}
public void s_r(){
try {
while(true) {
byte[] buf = new byte[3000];
//接收數(shù)據(jù)的數(shù)據(jù)包
DatagramPacket packet = new DatagramPacket(buf,buf.length);
socket.receive(packet);
//地址
InetAddress clientAddress = packet.getAddress();
//端口號(hào)
int clientPort = packet.getPort();
data d = new data();
d.setAddress(clientAddress);
d.setPort(clientPort);
int i=0;
//判斷客戶端集合里是否存在發(fā)送新消息的客戶端
for(;i<client.size();i++) {
if(client.get(i).getAddress().equals(clientAddress)&&client.get(i).getPort()==clientPort) {
break;
}
}
if(i==client.size()) {
client.add(d);
}
String s=new String(packet.getData()).trim()+"來自:"+clientAddress.getHostAddress()+":"+clientPort;
System.out.println(s);
//把信息發(fā)給每個(gè)客戶端
for(data c:client) {
try {
//地址
InetAddress cAddress = c.getAddress();
//端口號(hào)
int cPort = c.getPort();
buf = s.getBytes();
//創(chuàng)建要發(fā)送的數(shù)據(jù)包
packet = new DatagramPacket(buf,buf.length,cAddress,cPort);
socket.send(packet);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
} catch (SocketException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally {
if(socket!=null)socket.close();
}
}
public static void main(String[] args) {
Server s = new Server();
s.s_r();
}
}
客戶端
package udp;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.SocketException;
import java.net.UnknownHostException;
public class Client {
DatagramSocket socket = null;
DatagramPacket packet;
InetAddress address = null;
Client(){
try {
socket = new DatagramSocket();
} catch (SocketException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void s_r() {
try {
// 把表示服務(wù)器端IP地址的字符串轉(zhuǎn)換成InetAddress對(duì)象
address = InetAddress.getByName("127.0.0.1");
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String s = "登陸";
byte[] b = s.getBytes();
packet = new DatagramPacket(b,b.length,address,8888);
try {
socket.send(packet);
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
//發(fā)送消息的線程
new Thread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
String sendStr;
BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
try {
while((sendStr = stdIn.readLine())!=null) {
byte[] buf = sendStr.getBytes();
packet = new DatagramPacket(buf,buf.length,address,8888);
socket.send(packet);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}).start();
//接收消息的線程
new Thread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
byte[] buf_1 = new byte[3000];
// 使用空字節(jié)數(shù)組構(gòu)造空數(shù)據(jù)包
DatagramPacket packet = new DatagramPacket(buf_1,buf_1.length);
try {
while(true) {
socket.receive(packet);
String received = new String(packet.getData(),0,packet.getLength()).trim();
System.out.println("接收到的信息:"+received);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}).start();
}
public static void main(String[] args) {
Client c = new Client();
c.s_r();
}
}
以上就是關(guān)于使用Java代碼,基于UDP實(shí)現(xiàn)一個(gè)簡單的聊天室功能的全部內(nèi)容,希望能夠?qū)Υ蠹业膶W(xué)習(xí)有所幫助,也希望大家多多支持W3Cschool。