Java中System.load()和System.loadLibrary的区别

发布于 2024-11-28 23:07:50 字数 387 浏览 0 评论 0原文

System.load()System.loadLibrary()

我想加载库,但不想将路径添加到环境变量。 其中任何一项会有帮助吗?

What is the difference between System.load() and System.loadLibrary() in java?

I want to load a library but I don't want to add the path to environment variables.
Will any one of these help?

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

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

发布评论

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

评论(1

无妨# 2024-12-05 23:07:50

API 文档中存在差异。 System.loadLibrary(String libname) 允许您从默认路径(Java 库路径)加载。

另一个 System.load(String filename) 允许您从绝对路径加载它,您必须将其指定为文件名。

如果您不想弄乱 java.library.path 环境变量,则应该使用 System.load()

The difference is there in the API documentation. System.loadLibrary(String libname) lets you load from the default path -- The Java library path.

The other System.load(String filename) lets you load it from an absolute path, which you must specify as your filename.

If you don't want to mess with you java.library.path environment variable, you should use System.load()

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