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.
我有一个项目, 这里包括 jni.h 和 jvmti.h 文件
这些文件存储在 jdk8 文件夹中(已经安装在我的电脑上) here
但主要问题 - 我不知道如何正确地将 jdk 库和 .h 文件链接到我的 Visual Studio prj
我建议您可以按照以下步骤链接静态库:
1、将头文件的路径添加到Additional Include Directories(property ->c/c++ -> General -> Additional Include Directories)
2、将.lib文件的路径添加到附加库目录(属性->链接器->通用->附加库目录)
3、将.lib文件的名称及其扩展名添加到附加依赖项(属性->链接器->输入->附加依赖项)