兩個(gè)程序間通信(一):Java Socket

File server and client

GENERAL USAGE
—————————————

  • Start server.java first by typing “java server” in a terminal window.

  • Start the client.java by typing “java client ‘host-name’ ‘file-name’” in a terminal
    window where host-name is the host to use and file-name is the required file.

  • 這個(gè)是單線程處理忱叭,接受連接請(qǐng)求和處理連接是基本的業(yè)務(wù)邏輯囱晴。

  • 多線程和線程池的解決方案

Server:

//*****************************************************************
// server.java 
//
// Allows clients to connect and request files.  If the file
// exists it sends the file to the client.  
//*****************************************************************

import java.lang.*;
import java.io.*;
import java.net.*;
import java.util.Scanner;

public class server 
{
    private final static int PORT = 12345;
    private final static int QUEUE_SIZE = 10;
    private final static int BUF_SIZE = 4096;
    
    public static void main(String[] args)
    {
        try {
            // Create the server socket
            ServerSocket sSocket = new ServerSocket(PORT, QUEUE_SIZE);
            
            // Socket is set up and will wait for connections
            while (true) {  //不用true會(huì)好一些
                // Listen for a connection to be made to this socket and accept it
                Socket cSocket = sSocket.accept();
                byte[] byteArray = new byte[BUF_SIZE];
                
                // Get the name of the file from the client
                Scanner scn = new Scanner(cSocket.getInputStream());
                String fileName = scn.next();
                
                // Send the contents of the file
                BufferedInputStream bis = new 
            BufferedInputStream(new FileInputStream(fileName));
                OutputStream outStream = cSocket.getOutputStream();
                while(bis.available() > 0) {
                    bis.read(byteArray, 0, byteArray.length);
                    outStream.write(byteArray, 0, byteArray.length);
                }
                            
                // Close
                bis.close();
                cSocket.close();
            }
        }
        catch(EOFException eofe) {
            eofe.printStackTrace();
            System.exit(1);
        }
        catch(FileNotFoundException fnfe) {
            fnfe.printStackTrace();
            System.exit(1);
        }
        catch(IllegalArgumentException iae) {
            iae.printStackTrace();
            System.out.println("Bind failed");
            System.exit(1);
        }
        catch(IOException ioe) {
            ioe.printStackTrace();
            System.out.println("Could not complete request");
            System.exit(1);
        }   
    }
}

Client:

//*****************************************************************
// client.java 
//
// Connects to the server and sends a request for a file by 
// the file name.  Prints the file contents to standard output.  
//*****************************************************************

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

public class client 
{
    private final static int PORT = 12345;
    private final static int BUF_SIZE = 4096;
    
    public static void main(String[] args)
    {       
        // Set up socket using host name and port number
        try {
            // Get host name and file name from command line arguments
            String host = args[0];
            String fileName = args[1];
            
            Socket s = new Socket(host, PORT);
            byte[] byteArray = new byte[BUF_SIZE];
            // Send filename to the server
            PrintWriter pw = new PrintWriter(s.getOutputStream(), true);
            pw.println (fileName);
            
            // Get the file from the server and print to command line
            DataInputStream fromServer = new DataInputStream(s.getInputStream());
            
            while(fromServer.read(byteArray) > 0) {
                System.out.println(new String(byteArray, "UTF-8"));
            }
            
            fromServer.close();
            s.close();
        }
        catch(IndexOutOfBoundsException iobe) {
            System.out.println("Usage: client host-name file-name");
            System.exit(1);
        }
        catch(UnknownHostException unhe) {
            unhe.printStackTrace();
            System.out.println("Unknown Host, Socket");
            System.exit(1);
        }
        catch(IOException ioe) {
            ioe.printStackTrace();
            System.exit(1);
        }
    }
}

注意:

Server進(jìn)入Socket cSocket = sSocket.accept();的時(shí)候车吹,判斷語(yǔ)句內(nèi)容其實(shí)不是很重要鸳劳,有的地方寫(xiě)成 if ( !serverSocket.close( )){ 假設(shè)我們一定要進(jìn)入accept()嘴脾,那含義是一樣的曲稼。ServerSocket的accept()本身是個(gè)當(dāng)前線程阻塞方法(一個(gè)線程在執(zhí)行過(guò)程中暫停注簿,以等待某個(gè)條件的觸發(fā)女阀,或者說(shuō)是等待所有資源到位)宅荤,那么,當(dāng)它只有接受一個(gè)客戶端的鏈接時(shí)浸策,才會(huì)往下執(zhí)行冯键,在此之前將一直等待,無(wú)限原地循環(huán)庸汗,如果直接關(guān)閉ServerSocket惫确,那么會(huì)報(bào)socket異常,因?yàn)椋?/p>

public Socket accept() throws IOException {  
       if (isClosed())  
           throw new SocketException("Socket is closed");    //here
       if (!isBound())  
           throw new SocketException("Socket is not bound yet");  
       Socket s = new Socket((SocketImpl) null);  
       implAccept(s);  
       return s;  
   } 

解決方案蚯舱,可以創(chuàng)建一個(gè)新的socket鏈接改化,并且改變flag值:

public void stopThread(){  
        this.flag = false;  
        try {  
            new Socket("localhost",50001);  
        } catch (UnknownHostException e) {  
            e.printStackTrace();  
        } catch (IOException e) {  
            e.printStackTrace();  
        }  
    }  

網(wǎng)上看到的另外一個(gè)版本:
Server:

package socket;
 
import java.io.*;
import java.net.*;
 
public class TcpServer {
    public static void main(String[] args) throws Exception {
        ServerSocket server = new ServerSocket(9091);
        try {
            Socket client = server.accept();
            try {
                BufferedReader input =
       new BufferedReader(new InputStreamReader(client.getInputStream()));
                boolean flag = true;
                int count = 1;
 
                while (flag) {
                    System.out.println(客戶端要開(kāi)始說(shuō)話了,這是第 + count + 次枉昏!);
                    count++;
                     
                    String line = input.readLine();
                    System.out.println(客戶端說(shuō): + line);
                     
                    if (line.equals(exit)) {
                        flag = false;
                        System.out.println(客戶端不想玩了陈肛!);
                    } else {
                        System.out.println(客戶端說(shuō):  + line);
                    }
 
                }
            } finally {
                client.close();
            }
             
        } finally {
            server.close();
        }
    }
}

Client:

package socket;
 
import java.io.*;
import java.net.*;
import java.util.Scanner;
 
public class TcpClient {
    public static void main(String[] args) throws Exception {
        Socket client = new Socket(127.0.0.1, 9091);
        try {
            PrintWriter output =
                    new PrintWriter(client.getOutputStream(), true);
            Scanner cin = new Scanner(System.in);
            String words;
 
            while (cin.hasNext()) {
                words = cin.nextLine();
 
                output.println(words);
 
                System.out.println(寫(xiě)出了數(shù)據(jù):  + words);
            }
 
            cin.close();
        } finally {
            client.close();
        }
    }
}

這是一個(gè)socket套接字通信的圖:


最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市兄裂,隨后出現(xiàn)的幾起案子句旱,更是在濱河造成了極大的恐慌阳藻,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,816評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件前翎,死亡現(xiàn)場(chǎng)離奇詭異稚配,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)港华,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)午衰,“玉大人立宜,你說(shuō)我怎么就攤上這事‰叮” “怎么了橙数?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,300評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)帅戒。 經(jīng)常有香客問(wèn)我灯帮,道長(zhǎng),這世上最難降的妖魔是什么逻住? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,780評(píng)論 1 285
  • 正文 為了忘掉前任钟哥,我火速辦了婚禮,結(jié)果婚禮上瞎访,老公的妹妹穿的比我還像新娘腻贰。我一直安慰自己,他們只是感情好扒秸,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布播演。 她就那樣靜靜地躺著,像睡著了一般伴奥。 火紅的嫁衣襯著肌膚如雪写烤。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 50,084評(píng)論 1 291
  • 那天拾徙,我揣著相機(jī)與錄音洲炊,去河邊找鬼。 笑死锣吼,一個(gè)胖子當(dāng)著我的面吹牛选浑,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播玄叠,決...
    沈念sama閱讀 39,151評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼古徒,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了读恃?” 一聲冷哼從身側(cè)響起隧膘,我...
    開(kāi)封第一講書(shū)人閱讀 37,912評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤代态,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后疹吃,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體蹦疑,經(jīng)...
    沈念sama閱讀 44,355評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評(píng)論 2 327
  • 正文 我和宋清朗相戀三年萨驶,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了歉摧。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,809評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡腔呜,死狀恐怖叁温,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情核畴,我是刑警寧澤膝但,帶...
    沈念sama閱讀 34,504評(píng)論 4 334
  • 正文 年R本政府宣布,位于F島的核電站谤草,受9級(jí)特大地震影響跟束,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜丑孩,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評(píng)論 3 317
  • 文/蒙蒙 一冀宴、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧嚎杨,春花似錦花鹅、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至箩帚,卻和暖如春真友,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背紧帕。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,121評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工盔然, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人是嗜。 一個(gè)月前我還...
    沈念sama閱讀 46,628評(píng)論 2 362
  • 正文 我出身青樓愈案,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親鹅搪。 傳聞我的和親對(duì)象是個(gè)殘疾皇子站绪,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容