JAVA程序加载C++库

来源:互联网 发布:热血无赖mac存档位置 编辑:程序博客网 时间:2024/05/22 03:48

JAVA程序加载C++库 

private static void loadJNILibDynamically() {

        try {            System.setProperty("java.library.path", System.getProperty("java.library.path")                    + ":/home/abc/workspace/");            Field fieldSysPath = ClassLoader.class.getDeclaredField("sys_paths");            fieldSysPath.setAccessible(true);            fieldSysPath.set(null, null);
            //C++动态链接库 JNIC            System.loadLibrary("JNIC");        } catch (Exception e) {            // do nothing for exception        }}