从 Eclipse 中运行客户端时出现问题

发布于 2024-07-12 22:10:47 字数 192 浏览 9 评论 0原文

每当我们从 Eclipse 中运行 Java 客户端以使用 RMI 联系服务器应用程序时,都会遇到异常: java.io.StreamCorruptedException: invalid type code: 01

这只发生在 Eclipse 中,不会发生在其他地方(IntelliJ、命令行等)。

有谁知道发生了什么事吗?

Whenever we run our Java client from within Eclipse to contact a server app using RMI, we get an exception:
java.io.StreamCorruptedException: invalid type code: 01

This only happens from within Eclipse, nowhere else (IntelliJ, command line, etc.).

Does anyone know what's going on?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青柠芒果 2024-07-19 22:10:50

会不会是服务器和客户端代码不兼容? 你用什么 JVM 来编译每一个?

Could it be incompatibility between server and client code? What JVM did you use to compile each one?

南七夏 2024-07-19 22:10:49

您似乎之前遇到过此问题;),它是在 JBoss 中也见过

通常是:

查看器运行时上下文中的ClassLoaderorg.apache.catalina.loader.WebappClassLoader

所以如果我执行以下操作:

ClassLoader savedClassLoader = Thread.currentThread.getContextClassLoader();
if (savedClassLoader.getClass().getName().equalsIgnoreCase("org.apache.catalina.loader.WebappClassLoader")){
Thread.currentThread().setContextClassLoader(this.getClass().getClassLoader());
}

然后将保存的加载器设置回IConnection.Close(),它就可以工作了

You seem to have encountered this issue before ;) and it is seen with JBoss too.

It usually is a:

The ClassLoader that is in the context when the viewer is running is the org.apache.catalina.loader.WebappClassLoader.

So if I do the following:

ClassLoader savedClassLoader = Thread.currentThread.getContextClassLoader();
if (savedClassLoader.getClass().getName().equalsIgnoreCase("org.apache.catalina.loader.WebappClassLoader")){
Thread.currentThread().setContextClassLoader(this.getClass().getClassLoader());
}

and then set the saved loader back in the IConnection.Close(), it works

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文