如何创建我的c ++代码的DLL。

时间:2011-07-29 10:25:36

标签: c++ dll

  

可能重复:
  how dll created out of c++ source and how it is used in other sources?

我需要调用一个c ++代码,它在我的java代码中获取外部设备的PID / VID。我google了一些信息。通过将c ++代码转换为dll,我可以在我的java代码中使用它。有关如何将我的c ++代码转换为dll文件的任何建议。

2 个答案:

答案 0 :(得分:1)

逐步查找使用VC ++ here生成dll的程序。

此外,您需要使用JNI将c ++ dll用于java项目。

答案 1 :(得分:1)

您正在寻找的是JNI(Java Native Interface)。

这是使用VC ++编译dll的链接 - http://www.tidytutorials.com/2009/07/java-native-interface-jni-example-using.html

和一个使用MinGW - http://www.mingw.org/node/41