溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Java中使用TCP實(shí)現(xiàn)一個(gè)在線聊天功能

發(fā)布時(shí)間:2021-03-22 16:51:14 來源:億速云 閱讀:191 作者:Leah 欄目:編程語(yǔ)言

本篇文章給大家分享的是有關(guān)怎么在Java中使用TCP實(shí)現(xiàn)一個(gè)在線聊天功能,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

客戶端的代碼:

package tcp.http;

import java.io.*;
import java.net.*;
import java.util.Scanner;

public class Client{
public static void main(String[] args) throws IOException{
Scanner scanner=new Scanner(System.in);
//1.創(chuàng)建Socket
Socket tcpClientSocket=new Socket();
//2.TCP要發(fā)送消息,必須先建立連接
byte[] IPv4={127,0,0,1};  //連接到本機(jī)
InetAddress serverAddress=InetAddress.getByAddress(IPv4);
SocketAddress serverSocketAddress=new InetSocketAddress(serverAddress,7777);
tcpClientSocket.connect(serverSocketAddress);//連接上了,(連接過程代碼比較長(zhǎng),但是沒有什么復(fù)雜的,只需要查文檔根據(jù)函數(shù)的構(gòu)造過程,一步步來寫就好了)

while(true){ //寫個(gè)死循環(huán)來聊天
String request=scanner.nextLine();
//通過字節(jié)流寫入請(qǐng)求
OutputStream os=tcpClientSocket.getOutputStream();
//通過打印流打印和寫入
PrintStream out=new PrintStream(os,true,"UTF-8");
out.println(request);
//通過字節(jié)流讀取響應(yīng)
InputStream is=tcpClientSocket.getInputStream();
BufferedReader reader=new BufferedReader(new InputStreamReader(is,"UTF-8")); //通過readLine()來保證每次都能把一句完整的話讀完(\r\n是標(biāo)志);
String response=reader.readLine();
System.out.println("      "+response);
}
//tcpClientSocket.close();
}
}

服務(wù)器端的代碼:

package tcp.threads;

import java.io.*;
import java.net.*;
import java.util.Scanner;
import java.util.concurrent.*;

public class Server{

private static class TalkRunnable implements Runnable{ //一個(gè)個(gè)的工作線程
private Socket clientSocket;
TalkRunnable(Socket socket){
this.clientSocket=socket;
}
@Override
public void run(){
try{
InetAddress clientAddress=clientSocket.getInetAddress();
int clientPort=clientSocket.getPort();
System.out.printf("ID為 %s:%d 的好友上線了%n",clientAddress.getHostAddress(),clientPort);
//獲取字節(jié)流
InputStream is=null;
is=clientSocket.getInputStream();
//字節(jié)流轉(zhuǎn)換為字符流
InputStreamReader 
isReader=null;
isReader=new InputStreamReader(is,"UTF-8");
//獲取輸出字節(jié)流
OutputStream os=clientSocket.getOutputStream();
//獲取打印流
PrintStream out=new PrintStream(os,true,"UTF-8");
//獲取緩沖字符流
BufferedReader reader=new BufferedReader(isReader);
while(true){ //死循環(huán)聊天
String line=reader.readLine();
System.out.println("      好友說:"+line);
Scanner scanner=new Scanner(System.in);
String response=scanner.nextLine();
out.println(response);
}
}catch(IOException e){
e.printStackTrace();
}
}
}

public static void main(String[] args) throws IOException{
//監(jiān)聽連接
ServerSocket tcpServerSocket=new ServerSocket(7777);
//定義阻塞隊(duì)列
BlockingQueue<Runnable> queue=new LinkedBlockingQueue<>();
//創(chuàng)建線程池
ExecutorService pool=new ThreadPoolExecutor(100,100,0,TimeUnit.MILLISECONDS,queue);

while(true){
//TCP 要發(fā)送消息必須先建立連接
Socket clientSocket=tcpServerSocket.accept();
pool.execute(new TalkRunnable(clientSocket));//有一個(gè)客戶端連接到服務(wù)器,就起一個(gè)線程來專門處理這個(gè)對(duì)話
}
}
}

運(yùn)行結(jié)果:

部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。怎么在Java中使用TCP實(shí)現(xiàn)一個(gè)在線聊天功能

以上就是怎么在Java中使用TCP實(shí)現(xiàn)一個(gè)在線聊天功能,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI