1

我上网了2天,没有找到解决formmyproblem的方法,所以决定在这里问一下。我正在做一个书本练习:“用 Java RMI 编写一个程序 Client-Server,它返回客户端给出的整数的总和。它必须实现一个添加整数的方法,以及一个获取总数的方法”。我面对的是服务器端。

程序返回的错误是:

java.rmi.UnmarshalException: Error unmarshaling return; nested exception is: 
java.net.MalformedURLException: unknown protocol: c
at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
at sun.rmi.server.UnicastRef.invoke(Unknown Source)
at sun.rmi.registry.RegistryImpl_Stub.bind(Unknown Source)
at java.rmi.Naming.bind(Unknown Source)
at ContatoreServer.main(ContatoreServer.java:15)
Caused by: java.net.MalformedURLException: unknown protocol: c
    at java.net.URL.<init>(Unknown Source)
    at java.net.URL.<init>(Unknown Source)
    at java.net.URL.<init>(Unknown Source)
    at sun.rmi.server.LoaderHandler.pathToURLs(Unknown Source)
    at sun.rmi.server.LoaderHandler.getDefaultCodebaseURLs(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadClass(Unknown Source)
    at java.rmi.server.RMIClassLoader$2.loadClass(Unknown Source)
    at java.rmi.server.RMIClassLoader.loadClass(Unknown Source)
    at sun.rmi.server.MarshalInputStream.resolveClass(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    ... 5 more

这是我的课程: LocalObject

public class ContatoreLocale {
    private int num;

    public ContatoreLocale(){
        this.num=0;
    }

    public synchronized int get(){
        return this.num;
    }

    public synchronized void add(int i){
        this.num+=i;
    }
}

远程接口

public interface IContatore extends Remote{
    int get() throws RemoteException;
    void add(int i) throws RemoteException;

}

远程对象

public class ContatoreRemoto extends ContatoreLocale implements IContatore{
    Logger log= Logger.getLogger("global");

    //Costruttore
    public ContatoreRemoto() throws RemoteException{
        super();
        UnicastRemoteObject.exportObject(this, 0);
        try {
            Naming.rebind("Contatore", this);
            //errore
        } catch (MalformedURLException e) {
            e.printStackTrace();
        }   
    }

    public int get(String nome) throws RemoteException{
        return this.get();
    }

    public void add(String nome,int i) throws RemoteException{
        this.add(i);
    }
}

服务器

public class ContatoreServer {
    static Logger log= Logger.getLogger("global");

    public static void main(String[] args) {
            try {
                ContatoreRemoto cr=new ContatoreRemoto();
                log.info("Server Pronto");
            } catch (RemoteException e) {
                e.printStackTrace();
            }
        }
    }

请帮帮我:S

4

1 回答 1

-1

根据我的经验,这与放置 RMI Eclipse 项目的文件系统中的绝对路径有关。我想你可能在路径中有一个空白,一个空格。所以 RMI 无法解析路径并被中断,......然后我们得到“格式错误”的异常。它可能在“c”附近,因此,您会在异常中得到“c”。我建议您转到文件系统,导航到项目文件夹,然后检查项目的绝对路径。我敢打赌你有一个空白。比如c:\Users\mylab c\MyProjects....你注意到空格了吗?

于 2018-11-11T22:13:30.847 回答