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 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
MathWorks Support Team
am 25 Okt. 2013
Beantwortet: MathWorks Support Team
am 25 Okt. 2013
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?
Akzeptierte Antwort
MathWorks Support Team
am 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.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB Compiler SDK finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!