在java中通过套接字发送对象 [英] Sending an object through a socket in java

查看:28
本文介绍了在java中通过套接字发送对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有 2 个 java netbeans 项目,一个是服务器,另一个是客户端.我创建了一个 Message 类,我想将其传递给服务器,并在服务器上完成修改后以另一种方式返回给客户端.我在两个项目中都包含了 Message 类.我使用 ObjectOutputStreamObjectInputStream 来传递对象.服务器和客户端之间的连接正常,对象通过但在服务器上,当我使用 readObject() 方法从 ObjectInputStream 读取对象时,我输入了它到 Message 类.但是在服务器上抛出了一个 ClassNotFoundException.它找不到 Message 类.我该如何解决?

I have 2 java netbeans projects, one is the Server other is the Client. I have a Message class that I have created which I want to pass to the server and back the other way to the client after modification done at the server. I have included the class Message in both projects. I use ObjectOutputStream and ObjectInputStream to pass the object. The connection between the server and the client is ok and the object passes through but at the server when I read the object from the ObjectInputStream using readObject() method I type cast it to the Message class. But an ClassNotFoundException is thrown at the server. It cant find the Message class. How can I resolve this?

客户端代码:

public void startClient() {
    try {
        // Create the socket
        Socket clientSocket = new Socket(HOST, PORT);
        // Create the input & output streams to the server
        ObjectOutputStream outToServer = new ObjectOutputStream(clientSocket.getOutputStream());
        ObjectInputStream inFromServer = new ObjectInputStream(clientSocket.getInputStream());

        // Read modify
        // TODO here

        /* Create The Message Object to send */
        LinkedList<Message> msgList = new LinkedList<>();
        Message msg = new Message();
        msg.setMessage("Kasun");
        msg.setIndex(1);
        msg.setAverage(5.5f);
        msgList.push(msg);

        /* Send the Message Object to the server */
        outToServer.writeObject(msgList);            

        /* Retrive the Message Object from server */
        LinkedList<Message> inFromServerList = new LinkedList<>();
        Message msgFrmServer = null;
        inFromServerList = (LinkedList<Message>)inFromServer.readObject();
        msgFrmServer = inFromServerList.pop();

        /* Print out the recived Message */
        System.out.println("Message: " + msgFrmServer.getMessage());
        System.out.println("Index: " + msgFrmServer.getIndex());
        System.out.println("Average: " + msgFrmServer.getAverage());


        clientSocket.close();

    } catch (Exception e) {
        System.err.println("Client Error: " + e.getMessage());
        System.err.println("Localized: " + e.getLocalizedMessage());
        System.err.println("Stack Trace: " + e.getStackTrace());
    }
}

服务器代码

public void startServer() {

    try {
        ServerSocket welcomeSocket = new ServerSocket(PORT);

        while (true) {    
            // Create the Client Socket
            Socket clientSocket = welcomeSocket.accept();
            System.out.println("Socket Extablished...");
            // Create input and output streams to client
            ObjectOutputStream outToClient = new ObjectOutputStream(clientSocket.getOutputStream());
            ObjectInputStream inFromClient = new ObjectInputStream(clientSocket.getInputStream());

            // Read modify
            // TODO here

            /* Create Message object and retrive information */
            LinkedList<Message> inList = new LinkedList<>();
            Message inMsg = null;
            inList = (LinkedList<Message>)inFromClient.readObject();
            inMsg = inList.pop();

            /* Modify the message object */
            inMsg.setMessage(inMsg.getMessage().toUpperCase());
            inMsg.setIndex(5);
            inMsg.setAverage(10.5f);

            /* Send the modified Message object back */
            outToClient.writeObject(inMsg);        

        }

    } catch (Exception e) {
        System.err.println("Server Error: " + e.getMessage());
        System.err.println("Localized: " + e.getLocalizedMessage());
        System.err.println("Stack Trace: " + e.getStackTrace());
        System.err.println("To String: " + e.toString());
    }
}

服务器"抛出的异常

java.lang.ClassNotFoundException: rusl.online.examination.system.client.utility.Message

我是否必须使用 java RMI?有没有不使用 RMI 的解决方案?

Would I have to use java RMI? Is there a solution for this without using RMI?

推荐答案

确保服务器端的 Message 是 rusl.online.examination.system.client.utility.Message.好像不是这样.

Make sure that Message on server side is rusl.online.examination.system.client.utility.Message. It seems not to be the case.

这篇关于在java中通过套接字发送对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆