国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

領略java.util.Canlendar的優點

瀏覽:5日期:2024-06-19 18:38:04
java中SOCKET通訊源碼 內容: //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-flushout=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
標簽: Java
相關文章:
主站蜘蛛池模板: 四川省| 新建县| 青龙| 栾川县| 景德镇市| 大竹县| 周宁县| 梁河县| 曲周县| 玉山县| 景德镇市| 辽中县| 建平县| 光山县| 汉源县| 新沂市| 兴和县| 罗甸县| 兴业县| 原平市| 仲巴县| 白朗县| 广西| 南昌市| 霍州市| 溧阳市| 桂东县| 隆尧县| 华安县| 宜昌市| 天祝| 辽阳县| 永和县| 安国市| 南漳县| 肃北| 公安县| 建水县| 和硕县| 湘乡市| 彭州市|