摘要: 服务器端代码:import java.io.*;import java.net.*;/** * Created with IntelliJ IDEA. * User: HYY * Date: 13-10-30 * Time: 下午2:15 * To change this template use File | Settings | File Templates. */public class Server { public static void main(String[] args) { ServerSocket serverSocket; Buffere... 阅读全文
posted @ 2013-10-30 14:50 无忧之路 阅读(557) 评论(0) 推荐(0) 编辑
摘要: import java.io.*;import java.net.ServerSocket;import java.net.Socket;import java.util.Scanner;/** * User: HYY * Date: 13-10-29 * Time: 下午9:57 * To change this template use File | Settings | File Templates. */public class Server { public static final int SERVER_PORK = 10000; public static void ... 阅读全文
posted @ 2013-10-30 09:39 无忧之路 阅读(4809) 评论(0) 推荐(0) 编辑
无忧之路