System.loadLibrary 加载路径

static
{
System.loadLibrary("xxx") ;
System.loadLibrary("callxxx") ;
}

System.loadLibrary 的搜索路径由'java.library.path' 来决定

System.out.println('加载库时搜索的路径列表:\n'+System.getProperty('java.library.path'));

如果不在这个目录下肯定找不到

你可能感兴趣的:(System.loadLibrary 加载路径)