Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个主要用 vb.net 编写的 DLL 文件,它需要 2 个参数。我想在我的 java 代码中使用这个 DLL 并传递所需的 2 个参数。我应该怎么做?
在 Java 中,基本上有两个不错的选择:(按推荐顺序)
使用JNI,加载您的 dll 并调用本机函数
看