bio java 例子_简单BioDemo示例(socket通信)

思路:服务端接到请求,分发给多线程任务,返回时间给客户端

Bioserver服务端

import java.io.IOException;

import java.net.ServerSocket;

import java.net.Socket;

public class BioServer {

/**

* 端口号

*/

private static final int PORT = 8080;

public static void main(String[] args) throws IOException {

ServerSocket server = null;

try {

server = new ServerSocket(PORT);

System.out.println("the time server is start in port : " + PORT);

Socket socket = null;

while (true){

socket = server.accept();

new Thread(new TimeServerHandler(socket)).start();

}

}catch (Exception e){

e.printStackTrace();

}finally {

if(server!=null){

System.out.println("the time server close");

server.close();

}

}

}

}

多线程时间任务

import java.io.*;

import java.net.Socket;

import java.util.Date;

public class TimeServerHandler implements Runnable {

private Socket socket;

public TimeServerHandler(Socket socket){

this.socket = socket;

}

@Override

public void run() {

BufferedReader in = null;

PrintWriter out = null;

try {

in = new BufferedReader(new InputStreamReader(this.socket.getInputStream())) ;

out = new PrintWriter(this.socket.getOutputStream(), true);

String body = null;

while ((body = in.readLine())!=null && body.length()!=0){

System.out.println("the time server receive msg :" + body);

out.println(new Date().toString());

}

}catch (Exception e){

e.printStackTrace();

}finally {

if(in!=null){

try {

in.close();

}catch (Exception e){

e.printStackTrace();

}

}

if(out!=null){

try {

out.close();

}catch (Exception e){

e.printStackTrace();

}

}

if(this.socket != null){

try{

this.socket.close();

}catch (Exception e){

e.printStackTrace();

}

}

}

}

}

BioCenlit客户端

import java.io.BufferedReader;

import java.io.InputStreamReader;

import java.io.PrintWriter;

import java.net.Socket;

public class BioClient {

private static final int PORT = 8080;

private static final String HOST = "127.0.0.1";

public static void main(String[] args){

Socket socket = null;

BufferedReader in = null;

PrintWriter out = null;

try {

socket = new Socket(HOST, PORT);

in = new BufferedReader(new InputStreamReader(socket.getInputStream()));

out = new PrintWriter(socket.getOutputStream(), true);

out.println("I am Client");

String resp = in.readLine();

System.out.println("当前服务器时间是:"+resp);

}catch (Exception e){

e.printStackTrace();

}finally {

if(in != null){

try {

in.close();

}catch (Exception e){

e.printStackTrace();

}

}

if(out != null){

try {

out.close();

}catch (Exception e){

e.printStackTrace();

}

}

if (socket != null) {

try {

socket.close();

} catch (Exception e) {

e.printStackTrace();

}

}

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值