Can I set java.library.path programmatically from java code itself?
The following doesn't work.
System.setProperty("java.library.path", "/blah");
|
|
No you can't. This property is a read only value. You can change it at JVM launchin time with:
If you want to load a library from a specific location, you can use System.load(libraryPath) instead with the full path to the library. |
|||
|
|
|
|||
|
|
||||
|
|
Yes it will read the Environment Variables. Following is the code for setting the Environment variable using the ini4j. import java.io.IOException; import org.ini4j.Reg; public class SettingWinEnvironmentUsing_ini4j {
} You can find the ini4j jar at |
|||
|
|