java tcp server_使用java实现Server和Client(TCP)

Server.java

import java.io.*;

import java.net.*;

public class Server {

public static final int PORT=8888;

public void Server() throws IOException {

ServerSocket ss = new ServerSocket(PORT);

InetAddress ia = InetAddress.getByName(null);

System.out.println("Server@"+ia+" start!");

try{

while(true){

Socket s = ss.accept();// listen PORT;

try{

new ServerOne(s);

} catch (IOException e) {

s.close();

}

}

}finally{

ss.close();

System.out.println("Server stop!");

}

}

}

class ServerOne extends Thread {

private Socket s;

private BufferedReader in;

private PrintWriter out;

public ServerOne(Socket s) throws IOException {

this.s = s;

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

out = new PrintWriter(new BufferedWriter

(new OutputStreamWriter(s.getOutputStream())), true);

start();

}

public void run(){

try {

while(true) {

String str = in.readLine();

if(str.equals("end")) break;

System.out.println("Server: receive information"+str);

out.println("Echo: "+str);

}

System.out.println("closing....");

} catch (IOException e){

} finally {

try{

s.close();

}catch(IOException e){}

}

}

}

Client.java:

import java.io.*;

import java.net.*;

public class Client extends Thread {

static final int MAX_THREADS=25;

private static int id = 0;

private static int threadCount = 0;

private Socket s;

private BufferedReader in;

private PrintWriter out;

public static int getThreadCount(){

return threadCount;

}

public Client(InetAddress ia){

threadCount++;

id++;

System.out.println("Making client: " + id);

try{

s = new Socket(ia, Server.PORT);

} catch (IOException e) {}

try{

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

out = new PrintWriter(new BufferedWriter

(new OutputStreamWriter(s.getOutputStream())), true);

start();

}catch(IOException e1){

try{

s.close();

}catch(IOException e2){

System.out.println("Error in Client\n");

}

}

}

public void run() {

try{

String str;

for(int i = 0; i < 5; i++) {

out.println("Client #"+id+":"+i);

str=in.readLine();

System.out.println("Client: send message#"+id+":"+i+"\n"

+"Server reply: "+str);

}

out.println("end");

}catch(IOException e){

}finally{

try {

s.close();

} catch (IOException e){}

}

}

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

InetAddress ia = InetAddress.getByName(null); //null mean localhost

while(true){

if(getThreadCount() < MAX_THREADS)

new Client(ia);

else break;

Thread.currentThread().sleep(10);

}

}

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值