Java client实现,Java怎么实现两个Client也能进行通信

Java codeimport java.io.*;

import java.net.*;

class TServer extends Thread{

Socket s;

public TServer(Socket s){

this.s = s;

}

public void run() {

sendMsg(s);

getMsg(s);

}

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

ServerSocket server = new ServerSocket(8888);

while(true)

{

Socket s = server.accept();

TServer ts = new TServer(s);

ts.start();

}

}

public static void sendMsg(Socket s){

System.out.println("请输入发送给客户端的信息:");

String line=null;

BufferedReader br=null;

OutputStream os =null;

try{

br = new BufferedReader(new InputStreamReader(System.in));

line = br.readLine();

}catch(Exception e){

e.printStackTrace();

}

try{

os = s.getOutputStream();

os.write(line.getBytes());

}catch(Exception e){

e.printStackTrace();

}

}

public static void getMsg(Socket s){

System.out.println("正在获取客户端的信息,请待........");

InputStream is =null;

try{

is = s.getInputStream();

byte [] buf = new byte [1024];

int len = is.read(buf);

System.out.println(new String(buf,0,len));

}catch(Exception e){

e.printStackTrace();

}

}

}

import java.io.*;

import java.net.*;

class TClient extends Thread{

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

Socket s = new Socket("127.0.0.1",8888);

getMsg(s);

sendMsg(s);

}

public static void sendMsg(Socket s){

System.out.println("请输入发送给服务器的信息:");

String line=null;

BufferedReader br=null;

OutputStream os =null;

try{

br = new BufferedReader(new InputStreamReader(System.in));

line = br.readLine();

}catch(Exception e){

e.printStackTrace();

}

try{

os = s.getOutputStream();

os.write(line.getBytes());

}catch(Exception e){

e.printStackTrace();

}

}

public static void getMsg(Socket s){

System.out.println("正在获取服务器信息,请待........");

InputStream is =null;

try{

is = s.getInputStream();

byte [] buf = new byte [1024];

int len = is.read(buf);

System.out.println(new String(buf,0,len));

}catch(Exception e){

e.printStackTrace();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值