Main Content

javaaddpath

Add entries to dynamic Java class path

Description

example

javaaddpath(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.

example

javaaddpath(dpath,'-end') adds files or folders to the end of the path.

Examples

collapse all

Display the current dynamic path. The output reflects your configuration.

javaclasspath('-dynamic')
		DYNAMIC JAVA PATH

    <empty>

Add the current folder.

javaaddpath(pwd)

Display the updated dynamic path. The output reflects your current folder.

p = javaclasspath
p = 
    'c:\work\Java'
javaaddpath('http://www.example.com','-end')
p = javaclasspath
p = 
    'c:\work\Java'
    'http://www.example.com'

Input Arguments

collapse all

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 message Not clearing Java, the dynamic path is updated, but you might need to type clear java so that MATLAB detects the new Java classes.

Version History

Introduced before R2006a