Java基于Socket實現(xiàn)簡單的多線程回顯服務(wù)器功能示例
本文實例講述了Java基于Socket實現(xiàn)簡單的多線程回顯服務(wù)器功能。分享給大家供大家參考,具體如下:
需要兩個類,一個是EchoServer,代表服務(wù)器。另外一個是EchoServerClient,代表客戶端。代碼如下:
package interview;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
public class EchoServer {
public static void main(String []args) throws IOException{
ServerSocket server = new ServerSocket(6789);
while(true){
Socket client = server.accept();
ClientHandler handler = new ClientHandler(client);
new Thread(handler).start();
}
}
public static class ClientHandler implements Runnable{
private Socket client;
@Override
public void run() {
InputStreamReader isr = null;
try {
isr = new InputStreamReader(client.getInputStream());
BufferedReader br = new BufferedReader(isr);
PrintWriter pw = new PrintWriter(client.getOutputStream());
String msg = br.readLine();
System.out.println("收到" + client.getInetAddress() + "發(fā)送的" + msg);
pw.println("收到了你發(fā)的" + msg);
pw.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
public ClientHandler(Socket client){
this.client = client;
}
}
}
下面是客戶端代碼:
package interview;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Scanner;
public class EchoServerClient {
public static void main(String []args) throws UnknownHostException, IOException{
Socket client = new Socket("127.0.0.1", 6789);
Scanner sc = new Scanner(System.in);
System.out.print("請輸入要發(fā)送的內(nèi)容:");
String msg = sc.nextLine();
sc.close();
PrintWriter pw = new PrintWriter(client.getOutputStream());
pw.println(msg);
pw.flush();
InputStreamReader isr = new InputStreamReader(client.getInputStream());
BufferedReader br = new BufferedReader(isr);
System.out.println("服務(wù)器返回:" + br.readLine());
client.close();
}
}
NIO多路復(fù)用套接字方法如下:
package interview;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
import java.util.Iterator;
public class EchoServerNIO {
private static ServerSocketChannel serverChannel = null;
private static Selector selector = null;// 多路復(fù)用選擇器
private static ByteBuffer buffer = null; // 緩沖區(qū)
public static void main(String []args) throws IOException{
init();
listen();
}
static void init() throws IOException{
serverChannel = ServerSocketChannel.open();
buffer = ByteBuffer.allocate(1024);
serverChannel.socket().bind(new InetSocketAddress(6789));
serverChannel.configureBlocking(false);
selector = Selector.open();
serverChannel.register(selector, SelectionKey.OP_ACCEPT);
}
static void listen() throws IOException{
while(true){
if(selector.select(5000) != 0){
Iterator<SelectionKey> it = selector.selectedKeys().iterator();
while(it.hasNext()){
SelectionKey key = it.next();
it.remove();
handleKey(key);
}
}
}
}
static void handleKey(SelectionKey key) throws IOException{
SocketChannel channel = null;
if(key.isAcceptable()){
ServerSocketChannel serverChannel = (ServerSocketChannel)key.channel();
channel = serverChannel.accept();
channel.configureBlocking(false);
channel.register(selector, SelectionKey.OP_READ);
}else if(key.isReadable()){
channel = (SocketChannel)key.channel();
buffer.clear();
if(channel.read(buffer) > 0){
buffer.flip();
CharBuffer charBuffer = CharsetHelper.decode(buffer);
String msg = charBuffer.toString();
System.out.println("收到" + channel.getRemoteAddress() + "的消息:" + msg);
channel.write(CharsetHelper.encode(CharBuffer.wrap("received your msg:" + msg)));
}
}
}
public static class CharsetHelper{
private static final String UTF_8 = "UTF-8";
private static CharsetEncoder encoder = Charset.forName(UTF_8).newEncoder();
private static CharsetDecoder decoder = Charset.forName(UTF_8).newDecoder();
private CharsetHelper() {
}
public static ByteBuffer encode(CharBuffer in) throws CharacterCodingException{
return encoder.encode(in);
}
public static CharBuffer decode(ByteBuffer in) throws CharacterCodingException{
return decoder.decode(in);
}
}
}
更多關(guān)于java相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Java Socket編程技巧總結(jié)》、《Java文件與目錄操作技巧匯總》、《Java數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Java操作DOM節(jié)點技巧總結(jié)》和《Java緩存操作技巧匯總》
希望本文所述對大家java程序設(shè)計有所幫助。
相關(guān)文章
Spring security 如何開放 Swagger 訪問權(quán)限
這篇文章主要介紹了Spring security 如何開放 Swagger 訪問權(quán)限操作,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2021-09-09
解析Neatbeans(常見錯誤) build-impl.xml:305: Compile failed
本篇文章是對Neatbeans(常見錯誤) build-impl.xml:305: Compile failed的解決方法進行了詳細的分析介紹,需要的朋友參考下2013-07-07
解決java.lang.NoClassDefFoundError錯誤的問題
在Java開發(fā)過程中,NoClassDefFoundError是一個常見的運行時錯誤,是由于JVM在運行時找不到已編譯的類文件導(dǎo)致的,本文就來介紹一下如何解決,具有一定的參考價值,感興趣的可以了解一下2024-09-09

