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 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2013 年 10 月 25 日
回答済み: MathWorks Support Team
2013 年 10 月 25 日
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?
採用された回答
MathWorks Support Team
2015 年 2 月 27 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB Compiler SDK についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!