javaaddpath - Add entries to dynamic Java class path - MATLAB (original) (raw)
Main Content
Add entries to dynamic Java class path
Syntax
Description
javaaddpath([dpath](#btmhdhy-1-dpath))
adds one or more folders or Java® Archive (JAR) files to the beginning of the current dynamic class path. Use the dynamic path when developing and debugging your own Java classes.
The javaaddpath
command clears the definitions of all Java classes defined by files on the dynamic class path.
javaaddpath([dpath](#btmhdhy-1-dpath),'-end')
adds files or folders to the end of the path.
Examples
Display the current dynamic path. The output reflects your configuration.
javaclasspath('-dynamic')
DYNAMIC JAVA PATH
<empty>
Add the current folder.
Display the updated dynamic path. The output reflects your current folder.
javaaddpath('https://www.example.com','-end') p = javaclasspath
p = 'c:\work\Java' 'https://www.example.com'
Input Arguments
Folder or JAR file, specified as a string, an array of strings, a character vector, or a cell array of character vectors to add to the dynamic path. When you add a folder to the path, MATLAB® includes all files in that folder as part of the path.
Data Types: char
| cell
Limitations
- MATLAB does not support JAR files generated by the MATLAB Compiler SDK™ product.
Tips
- Use the dynamic path while you develop your own Java classes. After you develop and debug a Java class, add the class to the static path. For more information, see javaclasspath.
- To add folders to the static path, which MATLAB loads at startup, create a
javaclasspath.txt
file, as described in Static Path of Java Class Path. - If
javaaddpath
displays the messageNot clearing Java
, the dynamic path is updated, but you might need to typeclear java
so that MATLAB detects the new Java classes.
Version History
Introduced before R2006a