带有套接字的 Java 客户机/服务器应用程序?

2022-09-02 09:33:21

我正在编写一个java包,它将被另一种语言(matlab)调用。如果我的 matlab 进程结束,我希望 Java 进程继续运行。每当 matlab 再次启动时,它应该能够与现有的正在运行的进程进行通信。因此,我认为我需要让Java应用程序通过客户端/服务器模型中的套接字进行通信。我设想有一组简单的函数:

  • 启动服务器(主机、端口)
  • runCommand(server, command...)
  • 停止服务器(主机,端口)

我以前从未做过这样的事情。我是否以正确的方式思考它,或者是否有更简单的方法来构建可以独立于其父进程运行的应用程序?最好的现代方法是什么(例如,有没有好的Apache软件包)?任何人都可以提供一个简单的演示或向我指出有关通过套接字与进程进行通信的教程吗?

[编辑]为了澄清一些问题,matlab能够实例化java对象并在其自身内运行java代码。因此,matlab中的startServer()函数将运行java代码,该代码将检查java进程是否已在该端口上运行,如果没有,则启动服务器进程。

我没有任何方式使用套接字(以防万一它不明显,我主要是一个matlab开发人员),所以如果有更简单的东西,我全力以赴。我只需要能够独立于 matlab 运行,但让 matlab 控制这些进程(通过 java)。


答案 1

服务器侦听连接。当客户端建立连接时。客户端可以发送数据。在当前示例中,客户端发送消息“嗨,我的服务器”。为了终止连接,客户端发送消息“再见”。然后服务器也发送消息“再见”。最后,连接结束,服务器等待其他连接。这两个程序应在同一台计算机上运行。但是,如果要在两台不同的计算机中运行它们,则只需通过将运行服务器的计算机的IP地址更改地址“localhost”即可。

服务器

import java.io.*;
import java.net.*;
public class Provider{
    ServerSocket providerSocket;
    Socket connection = null;
    ObjectOutputStream out;
    ObjectInputStream in;
    String message;
    Provider(){}
    void run()
    {
        try{
            //1. creating a server socket
            providerSocket = new ServerSocket(2004, 10);
            //2. Wait for connection
            System.out.println("Waiting for connection");
            connection = providerSocket.accept();
            System.out.println("Connection received from " + connection.getInetAddress().getHostName());
            //3. get Input and Output streams
            out = new ObjectOutputStream(connection.getOutputStream());
            out.flush();
            in = new ObjectInputStream(connection.getInputStream());
            sendMessage("Connection successful");
            //4. The two parts communicate via the input and output streams
            do{
                try{
                    message = (String)in.readObject();
                    System.out.println("client>" + message);
                    if (message.equals("bye"))
                        sendMessage("bye");
                }
                catch(ClassNotFoundException classnot){
                    System.err.println("Data received in unknown format");
                }
            }while(!message.equals("bye"));
        }
        catch(IOException ioException){
            ioException.printStackTrace();
        }
        finally{
            //4: Closing connection
            try{
                in.close();
                out.close();
                providerSocket.close();
            }
            catch(IOException ioException){
                ioException.printStackTrace();
            }
        }
    }
    void sendMessage(String msg)
    {
        try{
            out.writeObject(msg);
            out.flush();
            System.out.println("server>" + msg);
        }
        catch(IOException ioException){
            ioException.printStackTrace();
        }
    }
    public static void main(String args[])
    {
        Provider server = new Provider();
        while(true){
            server.run();
        }
    }
}

客户

import java.io.*;
import java.net.*;
public class Requester{
    Socket requestSocket;
    ObjectOutputStream out;
    ObjectInputStream in;
    String message;
    Requester(){}
    void run()
    {
        try{
            //1. creating a socket to connect to the server
            requestSocket = new Socket("localhost", 2004);
            System.out.println("Connected to localhost in port 2004");
            //2. get Input and Output streams
            out = new ObjectOutputStream(requestSocket.getOutputStream());
            out.flush();
            in = new ObjectInputStream(requestSocket.getInputStream());
            //3: Communicating with the server
            do{
                try{
                    message = (String)in.readObject();
                    System.out.println("server>" + message);
                    sendMessage("Hi my server");
                    message = "bye";
                    sendMessage(message);
                }
                catch(ClassNotFoundException classNot){
                    System.err.println("data received in unknown format");
                }
            }while(!message.equals("bye"));
        }
        catch(UnknownHostException unknownHost){
            System.err.println("You are trying to connect to an unknown host!");
        }
        catch(IOException ioException){
            ioException.printStackTrace();
        }
        finally{
            //4: Closing connection
            try{
                in.close();
                out.close();
                requestSocket.close();
            }
            catch(IOException ioException){
                ioException.printStackTrace();
            }
        }
    }
    void sendMessage(String msg)
    {
        try{
            out.writeObject(msg);
            out.flush();
            System.out.println("client>" + msg);
        }
        catch(IOException ioException){
            ioException.printStackTrace();
        }
    }
    public static void main(String args[])
    {
        Requester client = new Requester();
        client.run();
    }
}

答案 2

如果您决定使用自定义套接字级协议,那么我可以建议您在java端使用JBoss Netty

换句话说,Netty是一个NIO客户端服务器框架,可以快速轻松地开发网络应用程序,如协议服务器和客户端。它大大简化和精简了网络编程,如TCP和UDP套接字服务器。


推荐