如何在 Java 中使用 .Net 程序集
我想在 Java 应用程序中使用 Microsoft .Net 程序集。有什么办法可以做到这一点吗?
任何帮助将不胜感激。
I want to use a Microsoft .Net Assembly in a Java Application. Is there any way out to do that.
Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Java 和.Net 运行完全不同的系统:分别是 JVM 和 CLR。不可能直接将一个加载到另一个中并使用它。它们是不兼容的格式。
不过,.Net 和 Java 组件可以通过桥接层进行交互。有几个提供这种行为
注意:这些解决方案中的大多数旨在共享定义良好的组件反对直接加载库。这可能适合你,也可能不适合你。
Java and .Net run an fundamentally different systems: the JVM and CLR respectively. It's not possible to directly load one into the other and use it. They are incompatible formats.
It is possible though to have .Net and Java components interact through a bridge layer. There are several out there which provide this behavior
Note: Most of these solutions though are aimed at sharing well defined components as opposed to directly loading libraries. This may or may not work for you.
关于同一主题的一些有趣的事情:ikvm
Something interesting on the same topic: ikvm