使用 Visual Basic 的 Java Applet 接口
您能给我指点有关使用 Visual Basic 访问 Java applet 中的数据的参考吗?我需要对我正在从事的项目是否可行进行一些研究,但很难找到任何信息。谢谢。
Can you point me to a reference on accessing data in a Java applet using Visual Basic? I need to do some research on whether or not it is feasible for the project I am working on, but it has been difficult to find any information. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您最好的方法可能是使用 ComfyJ 之类的东西创建一个用 Java 编写的 COM 对象,以便您的 VB.NET 应用程序可以使用它。
ComfyJ 功能
这是一个商业解决方案,但除非你有 Java应用程序将其数据序列化为 XML 或 JSON,然后使用 .NET 读回数据...我认为这是唯一的方法。
我还发现 jnBridge 这是一个 Java 到 .NET 的桥梁,可能也有帮助。看起来它可以使用不同的方法(例如共享内存到二进制序列化)来实现您的目标。
Your best be will probably be to use something like ComfyJ to create a COM object written in Java so that your VB.NET app can utilize it.
ComfyJ Features
It's a commercial solution, but unless you have your Java application serialize its data to XML or JSON and then read the data back in using .NET...I think it's the only way to go.
I also found jnBridge which is a Java to .NET bridge that might help as well. It looks like it can use different methods like Shared Memory to Binary Serialization to accomplish your goal.