Java Socket 编程源代码示例

时间:2014-01-13 09:34:01
【文件属性】:

文件名称:Java Socket 编程源代码示例

文件大小:2KB

文件格式:ZIP

更新时间:2014-01-13 09:34:01

Java Socket 编程源代码示例

import java.io.*; import java.net.*; import java.util.*; import java.lang.*; public class Server extends ServerSocket { private static ArrayList User_List = new ArrayList(); private static ArrayList Threader = new ArrayList(); private static LinkedList Message_Array = new LinkedList(); private static int Thread_Counter = 0; private static boolean isClear = true; protected static final int SERVER_PORT = 10000; protected FileOutputStream LOG_FILE = new FileOutputStream( "d:/connect.log", true); public Server() throws FileNotFoundException, IOException { super(SERVER_PORT); // append connection log // Calendar now = Calendar.getInstance(); // String str = "[" + now.getTime().toString() + // "] Accepted a connection"; // byte[] tmp = str.getBytes(); // LOG_FILE.write(tmp); try { Socket socket = accept(); while (true) { new ServerReaderThread(socket); new ServerWriterThread(socket); } } finally { close(); } } public static void main(String[] args) throws IOException { new Server(); } // --- CreateServerThread class ServerReaderThread extends Thread { private Socket client; private BufferedReader in; private PrintWriter out; private String Username; public ServerReaderThread(Socket s) throws IOException { client = s; in = new BufferedReader(new InputStreamReader(client .getInputStream())); out = new PrintWriter(client.getOutputStream(), true); start(); } public void run() { try { int flag = 0; Thread_Counter++; String line = in.readLine(); while (!line.equals("bye")) { out.println(line); line = in.readLine(); } out.println("--- See you, bye! ---"); // System.out.println("--- See you, bye! ---"); client.close(); } catch (IOException e) { } finally { try { client.close(); } catch (IOException e) { } Thread_Counter--; } } } // --- CreateServerThread class ServerWriterThread extends Thread { private Socket client; private BufferedReader in; private PrintWriter out; private String Username; public ServerWriterThread(Socket s) throws IOException { client = s; in = new BufferedReader(new InputStreamReader(client .getInputStream())); out = new PrintWriter(client.getOutputStream(), true); start(); } public void run() { while (true) { BufferedReader input = new BufferedReader( new InputStreamReader(System.in)); try { String line = input.readLine(); out.println(line); in.close(); out.close(); client.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } } }


【文件预览】:
Server.java
Client.java

网友评论

  • 很好用的例子。
  • 没有一行注释,原谅我看不懂 0.0
  • 挺好的代码,很适合初学者~
  • 深入浅出,不错。
  • 还行吧 有点帮助
  • 挺好的,有帮助
  • 还行,基本的用法
  • 还不错。 看了下。自己手写了。
  • 不错!适合我这种初学者!谢谢!
  • 代码风格挺好,不过是不是在连接上有些小问题
  • 不错,可以了解Socket的基础方法
  • 不错,最近要用到socket所以来学学java,会有帮助
  • 非常不错呀 好东西
  • 不错的,挺好的,对我有很大帮助
  • 很好,最近需要使用到
  • 应该不错的,虽然没用上
  • 学习了,有基本的东西
  • 学习了 基本的东西有了
  • 基础知识都涵盖了,挺好。
  • 学习到了不少知识,谢谢分享。
  • 东西 挺好的哦,可以用的
  • 可以参考,可惜运行不了。
  • 学习了 基本的东西有了
  • 东西少了点,简单
  • 很简单,可以通信