如何使用 C# 访问 jar 文件(其中包含 Java .class 作为 API)
我已将我的骨架应用程序发布为 API(jar 文件),然后介绍它如何与 C# 客户端应用程序(存根应用程序)一起使用。这意味着有什么方法可以通过 C# 填充或使用我的骨架应用程序的 DTO 等对象。谢谢。
I have published my skeleton application as a API (jar file), Then how it use with C# client application (stub application). That mean is there any way to populate or use my skeleton application's DTO etc objects with C#. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 IKVM 来完成
这里的页面:
http://www.ikvm.net/
IKVM.NET 是 Mono 和 Microsoft . NET 框架。它包括以下组件:
用 .NET 实现的 Java 虚拟机
Java 类库的 .NET 实现
支持 Java 和 .NET 互操作性的工具
http://www.ikvm.net/uses.html
You can do it through IKVM
Here's there page:
http://www.ikvm.net/
IKVM.NET is an implementation of Java for Mono and the Microsoft .NET Framework. It includes the following components:
A Java Virtual Machine implemented in .NET
A .NET implementation of the Java class libraries
Tools that enable Java and .NET interoperability
http://www.ikvm.net/uses.html