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 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 25 de Oct. de 2013
Respondida: MathWorks Support Team
el 25 de Oct. de 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?
Respuesta aceptada
MathWorks Support Team
el 27 de Feb. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB Compiler SDK en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!