我正在尝试使RMI程序正常工作。到目前为止,服务器已正确启动,但是客户端无法将远程对象强制转换为接口。


线程“ AWT-EventQueue-0”中的异常java.lang.ClassCastException:
com.sun.proxy。$ Proxy0无法转换为MonitorClient.InterfaceMonitor


我发现的所有其他答案都是针对最终用户使用InterfaceMonitorImpl(客户端未知)而不是Interface替代的情况。这不是我的情况,我在这里真的很茫然-RMI是噩梦般的。

服务器端

主要:

    InterfaceMonitor obj;
    try {
        LocateRegistry.createRegistry(1099);

        InterfaceMonitor stub = (InterfaceMonitor) UnicastRemoteObject.exportObject(new InterfaceMonitorImpl(), 0);

        Registry registry = LocateRegistry.getRegistry();
        registry.bind("imon", stub);

        System.out.println("Server ready");
    } catch (RemoteException | AlreadyBoundException ex) {
        System.out.println("Server error: " + ex.toString());
    }


InterfaceMonitor.java:

public interface InterfaceMonitor extends Remote {
    int checkAge() throws RemoteException;
}


InterfaceMonitorImpl.java:

public class InterfaceMonitorImpl implements InterfaceMonitor {

    public InterfaceMonitorImpl() throws RemoteException {

    }

    @Override
    public int counter() throws RemoteException {
        return 10;
    }

}


客户端

    try {
        Registry reg = LocateRegistry.getRegistry(null);
        InterfaceMonitor im = (InterfaceMonitor) reg.lookup("imon");

        int counter = im.counter();
        System.out.println("Counter: " + counter);
    } catch (NotBoundException | RemoteException ex) {
        Logger.getLogger(MonitorGUI.class.getName()).log(Level.SEVERE, null, ex);
    }


InterfaceMonitor.java也在客户端。

谢谢你的时间!

最佳答案

显然,您必须具有InterfaceMonitor:的两个副本,一个副本位于MonitorClient中,另一个副本可能位于诸如MonitorServer.之类的东西中,这使两个类不同。没有相同类别的两个副本。类名,包,方法声明,继承等都必须相同。

10-08 06:20