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.
当项目转移到另一台计算机时,我将如何加载 .dll,应用程序仍然可以在不更改 .dll 路径的情况下完美运行?
我在这个网站上阅读了一些似乎试图回答这个问题的主题,但所有这些主题都超出了我的想象。请用非常基本的术语解释(ELI5)。
谢谢你。
如果您知道 dll 文件相对于应用程序的启动点(即 jar 文件)的位置,则可以获取当前工作目录,然后以这种方式组合一个相对路径。
使用此行获取当前工作目录:
String directory = new File(".").getCanonicalPath();
如果 dll 与 jar 位于同一文件夹中,则您可以像这样找到它:
File dllPath = new File (directory+File.separator+"example.dll");