Different systems and programs modify the location of the Java.library.path

Source: Internet
Author: User

Original address: http://blog.csdn.net/quqibing001/article/details/51201768

Linux Environment

System variable Ld_library_path to add Java.library.path

Windows

In the environment variable, advanced system settings, System, add the PATH variable.

Eclipse

Added in ARGUMENTS->VM Arguments, run/debug settings, properties

-Djava.library.path=/home/abc/workspace/
IntelliJ idea

Run/debug Configurations's VM options add:

-Djava.library.path=/home/abc/workspace/
Program Dynamic Add
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        }}

Different systems and programs modify the location of the Java.library.path (turn)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.