我正在尝试运行RMI服务器应用程序。我发出以下命令:
java exemploRMI.Server
我收到以下错误:
Problemas no Servidor:
RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: exemploRMI.OlaRemoto
如何更正此错误?
Problemsmas no Serivord的意思是“服务器中的问题”,用葡萄牙语表示。
答案 0 :(得分:2)
试试这个:
java -classpath . exemploRMI.Server
这似乎是一个类路径问题。基本上,java需要知道在哪里查找要调用的类的名称。它不会自动假定当前目录是类路径的一部分。 Classpath