ServeOneSocket.java 服務端來源程式

來源:互聯網
上載者:User

//ServeOneSocket.java 服務端來源程式

import java.io.*;
import java.net.*;

public class ServeOneSocket extends Thread {

private Socket socket;
private BufferedReader in;
private PrintWriter out;
private String content;

/**
* Constructor
*/
public ServeOneSocket(Socket s,String c)throws IOException {
socket=s;
content=c;
in=new BufferedReader(
new InputStreamReader(
socket.getInputStream()));
//enable auto-flush
out=new PrintWriter(
new BufferedWriter(
new OutputStreamWriter(
socket.getOutputStream())),true);
start();//calls run()
}

public void run(){
try{
while (true){
String str=in.readLine();
if (str.equals("END"))break;
System.out.println("Echoing:"+str);
out.println(str);
out.println(content);
}
System.out.println("Closing...");
}catch(IOException e){
}finally{
try{
socket.close();
}catch(IOException e){}
}
}
}

//SocketClientThread.java 用戶端來源程式

import java.net.*;
import java.io.*;

class SocketClientThread extends Thread{
private Socket socket;
private BufferedReader in;
private PrintWriter out;
private static int counter=0;
private int id=counter++;
private static int threadcount=0;
final int port=8110;

public static int threadCount(){
return threadcount;
}

public SocketClientThread(InetAddress addr){
System.out.println("Making client:"+id);
threadcount++;
try{
socket=new Socket(addr,port);
}catch(IOException e){
}
try{
in=new BufferedReader(
new InputStreamReader(
socket.getInputStream()));
out=new PrintWriter(
new BufferedWriter(
new OutputStreamWriter(
socket.getOutputStream())),true);
start();
}catch(IOException e){
try{
socket.close();
}catch(IOException e2){}
}
}

public void run(){
try{
for (int i=0;i<25;i++){
out.println("Client:"+id+":"+i);
String str=in.readLine();
System.out.println(str);
}
out.println("END");
}catch(IOException e){
}finally{
try{
socket.close();
}catch(IOException e){}
threadcount--;
}
}
}

public class MultiSocketClient {
static final int MAX_THREADS=10;
/**
* main
* @param args
*/
public static void main(String[] args)throws IOException,InterruptedException {
InetAddress addr=InetAddress.getByName(null);
while (true){
if (SocketClientThread.threadCount()<MAX_THREADS)
new SocketClientThread(addr);
Thread.currentThread().sleep(100);
}
}
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.