java中如何访问DLL文件?

发布于 2024-09-25 15:52:40 字数 59 浏览 1 评论 0原文

我需要在 Java 6.0 中访问 Visual Basic 6.0 DLL 中的一些方法。我该怎么做?

I have some methods in a Visual Basic 6.0 DLL that I need to access in Java 6.0. How do I do this?

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

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

发布评论

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

评论(2

埖埖迣鎅 2024-10-02 15:52:40

Java Native 接口 是您的朋友。但更简单的方法应该是使用 Java Native Access 库。 这是类似问题的答案

The Java Native interface is your friend. But the easier way should be using the Java Native Access library. Here's an answer to a similiar question.

晚风撩人 2024-10-02 15:52:40

JNI 可以轻松地用于访问 DLL 中公开可用的任何函数(托管或非托管),以便可以在 java 中使用它。

您需要使用 Java 本机接口 (JNI) 创建自己的接口,然后像平常一样调用接口函数。

JNI can be easily used to access any function publicly available in a DLL (managed or unmanaged) so that it can be used in java.

You will need to create your own interface, using Java Native Interface (JNI), and then call the interface functions as you normally do.

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