java rmi中找不到类的解决

当rmi程序提示如下异常时

 

java.rmi.ServerException: RemoteException occurred in server thread; nested exce
ption is:
        java.rmi.UnmarshalException: error unmarshalling arguments; nested excep
tion is:

。。。。。。。

表示程序无法找到指定的类,可采取如下方法解决:

 

set CLASSPATH=%编译好的class文件所在路径%,然后再执行start rmiregistry 就可以了。。。

你可能感兴趣的:(java,thread)