作者
二
相比服務器端
Socket socket = new Socket(
in = new BufferedReader(new InputStreamReader(socket
out = new PrintWriter(socket
以上的程序代碼建立了一個Socket對象
三
讀者可以根據自己的喜好建立自己的用戶界面
經過以上三個步驟
一
try
{ file://建立服務器
ServerSocket server = new ServerSocket(
int i=
for(;;)
{
Socket incoming = server
new ServerThread(incoming
i++;
}
}catch (IOException ex){ ex
循環檢測是否有客戶連接到服務器上
二
new Thread()
{
public void run()
{
try
{
while(true)
{
checkInput();
sleep(
}
}catch(InterruptedException ex)
{
}catch(IOException ex)
{
}
}
}
其中的checkInput()方法為
private void checkInput() throws IOException
{
String line;
if((line=in
t
}
通過以上改進
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26107.html