Is it possible to add custom Java classes using JAVAADDPATH to the Java class path in a deployed application using MATLAB Compiler 4.18.1 (R2013a)?

4 views (last 30 days)
We use MATLAB Compiler to deploy our products, and would like to ship additional Java libraries. Can this be done by adding JAVAADDPATH to the code of the application we wish to compile? Will a call to JAVAADDPATH need to be surrounded with the ISDEPLOYED function?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Feb 2015
Adding JAVAADDPATH to a function to add classes or JAR-files to the Java class path and then compiling that function will allow the compiled executable to run as long as the location of the classes/JAR-files is the same as that declared in the executable. Using JAVAADDPATH will not add the classes/JAR-files to the compiled application.
If the location of the JAR-file/classes on the target machine is different to the location on the development machine, you may wish to include an ISDEPLOYED method to differentiate between the two. Alternatively, to retain a degree of flexibility, you may wish to pass the actual path as an argument to the function rather than hard-coding it in the function.

More Answers (0)

Categories

Find more on Standalone Applications in Help Center and File Exchange

Products


Release

R2013a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!