Java® classes can dynamically load native methods using the
Java method
java.lang.System.loadLibrary(". To
load the library file LibFile")LibFile, the folder containing it must be on
the Java Library Path. The JVM™ software defines this path at startup.
You can augment the search path for native method libraries by creating an ASCII text file
named javalibrarypath.txt in your preferences folder. Follow these
guidelines when editing this file.
Create the file.
cd(prefdir)
edit javalibrarypath.txtSpecify each new folder on a line by itself.
Specify only the folder names, not the names of the DLL files. The
System.loadLibrary call reads the file names.
In cross-platform environments, simplify the specification of folders by using the
$matlabroot, $arch, and
$jre_home macros.
You also can create a javalibrarypath.txt file in your MATLAB® startup folder. To identify the startup folder, type pwd at
the command line immediately after starting MATLAB. Libraries specified in the javalibrarypath.txt file in the
startup folder override libraries specified in the file in the preferences folder.
To disable using the javalibrarypath.txt file, start MATLAB with the -nouserjavapath option.