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.
javaSystem.load()和in有什么区别?System.loadLibrary()
System.load()
System.loadLibrary()
我想加载一个库,但我不想添加环境变量的路径。这些中的任何一个都有帮助吗?
不同之处在于 API 文档。System.loadLibrary(String libname)允许您从默认路径加载——Java 库路径。
System.loadLibrary(String libname)
另一个System.load(String filename)允许您从绝对路径加载它,您必须将其指定为文件名。
System.load(String filename)
如果你不想弄乱你的java.library.path环境变量,你应该使用System.load()
java.library.path