两个程序间通信(一):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.

  • 这个是单线程处理,接受连接请求和处理连接是基本的业务逻辑。

  • 多线程和线程池的解决方案

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会好一些
                // 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进入Socket cSocket = sSocket.accept();的时候,判断语句内容其实不是很重要,有的地方写成 if ( !serverSocket.close( )){ 假设我们一定要进入accept(),那含义是一样的。ServerSocket的accept()本身是个当前线程阻塞方法(一个线程在执行过程中暂停,以等待某个条件的触发,或者说是等待所有资源到位),那么,当它只有接受一个客户端的链接时,才会往下执行,在此之前将一直等待,无限原地循环,如果直接关闭ServerSocket,那么会报socket异常,因为:

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;  
   } 

解决方案,可以创建一个新的socket链接,并且改变flag值:

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

网上看到的另外一个版本:
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(客户端要开始说话了,这是第 + count + 次!);
                    count++;
                     
                    String line = input.readLine();
                    System.out.println(客户端说: + line);
                     
                    if (line.equals(exit)) {
                        flag = false;
                        System.out.println(客户端不想玩了!);
                    } else {
                        System.out.println(客户端说:  + 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(写出了数据:  + words);
            }
 
            cin.close();
        } finally {
            client.close();
        }
    }
}

这是一个socket套接字通信的图:


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容