想让服务端处理多个客户端的请求,最好将每个客户端封装到单独的线程中。
只要明确客户端要执行的服务端代码即可,这些代码放入run方法中。
//定义线程
class picThread implements Runnable
{
private Socket s;
picThread(Socket s){
this.s=s;
}
public vodi run(){
try{
inputStream in = s.getInputStream();
FileOutputStream os = new FileOutputStrem("conten.txt");
byte[] but = new byte[1024];
String len = null;
while((len=in.readLine(but))!=-1){
os.write(data,0,len);
}
os.close();
s.close();
}catch(Exception e){
theow new RuntimeException("失败");
}
}
}
//服务端,循环获取客户端,并循环建立线程
class picServer{
public static void main(String[] args)throws Exception{
ServerScoket service = new SercerSocket(端口);
while(true){
Socket s = ss.sccept();
new Thread(new PicThread(s)).start();
}
}
}
这样,当a客户访问服务端的时候会new一个线程给a客户执行,b客户进来时,又new一个线程给b客户执行
这样就成功实现了客户端并发请求。 |
|