Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So far I've learned the following about the java.library.path property:

  • It's used when loading native libraries, as opposed to java classes
  • Its default value depends on the operating system:
    • On Windows, it maps to PATH
    • On Linux, it maps to LD_LIBRARY_PATH
    • On OS X, it maps to DYLD_LIBRARY_PATH

(Please correct me if I've misunderstood any of the above)

My motivation:

I want to modify the value of java.library.path seen by a Java application from the framework I've set up to invoke the Java application. I want to do this not by setting the java.library.path property directly, but instead by modifying the system path variable that it maps to. I'd like a clean way to do this that doesn't have ugly OS-specific code or leave out edge cases if possible.

My question:

Is there a way to ask the local Java implementation what environment variable java.library.path maps to?

Then, in a shell script, I'd be able to write something along the lines of:

path_var = get_library_path_variable  # the magic function I want to call
${path_var} = /my/custom/path:${${path_var}}
share|improve this question
Run a program that prints it out? – Dave Newton Mar 4 '12 at 15:52
My feeling about that is that firing up a JVM is a slow, expensive operation (though I don't know exactly how slow and expensive). Also, it requires writing and maintaining another program rather than just the few lines in a shell script I'm hoping for. – Charlie Mar 4 '12 at 16:30
On second thought, I don't know if that would work. What would be a Java program that would print that out? – Charlie Mar 4 '12 at 16:32
2  
S.o.p(System.getProperty("java.library.path")); and yes, there's a JVM startup penalty. – Dave Newton Mar 4 '12 at 16:34
1  
There is no cross-platform environment property in user-space. No, Java has no immediate execution mode--wouldn't really make sense. – Dave Newton Mar 4 '12 at 16:44
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.