How execute a jar generated with Compiler SDK from windows prompt.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have generated a java library named example.jar.
I have already setted JAVA_HOME and CLASSPATH as follow:
JAVA_HOME:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/806739/image.png)
CLASSPATH:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/806744/image.png)
Path with jdk:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/806749/image.png)
Java version from MAtlab command line:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/806754/image.png)
My function takes 3 inputs (3 paths) and has no outputs.
Once the jar has been created I am trying to launch jar file from windows prompt with the following command:
java -cp MyJar.jar "C:\Program Files\MATLAB\R2021b\toolbox\javabuilder\jar\javabuilder.jar" 'path\file1' 'path\file2' 'path\file3'
And I'm receving the following error:
Error: impossible to find or upload the main class C:\Program Files\MATLAB\R2021b\toolbox\javabuilder\jar\javabuilder.jar
Caused by: java.lang.ClassNotFoundException: C:\Program Files\MATLAB\R2021b\toolbox\javabuilder\jar\javabuilder.jar
Any suggestion?
0 commentaires
Réponses (1)
Sean de Wolski
le 19 Nov 2021
I'd strongly recommend that you create a "sample" with the Compiler SDK. Then the output will contain a getting started guide with the exact steps to run that sample and the sample will execute:
4 commentaires
Lorenzo Bernardi
le 22 Nov 2021
Modifié(e) : Lorenzo Bernardi
le 22 Nov 2021
Sean de Wolski
le 22 Nov 2021
Do you have the Computer Vision toolbox on the trial license for compiler?
Voir également
Catégories
En savoir plus sur Java Package Integration dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!