Unable to run EngineGUIDemo in Java Engine

9 vues (au cours des 30 derniers jours)
Alex Phung
Alex Phung le 19 Nov 2016
Commenté : Justin Livermore le 8 Août 2023
I followed the directions in the README file, but I still get the error:
c:\Temp\MATLABJavaEngine>java -Djava.library.path="c:\Program Files\MATLAB\R2016b\bin\win64" -classpath .;"c:\Program Files\MATLAB\R2016b\extern\engines\java\jar\engine.jar" EngineConsoleDemo Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Program Files\MATLAB\R2016b\bin\win64\nativemvm.dll: Can't find dependent libraries
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(Unknown Source)
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at com.mathworks.mvm.MvmImpl.loadLibrary(MvmImpl.java:107)
at com.mathworks.mvm.MvmImpl.setJavaEngineMode(MvmImpl.java:202)
at com.mathworks.engine.MatlabEngine.<clinit>(MatlabEngine.java:69)
at EngineConsoleDemo.main(EngineConsoleDemo.java:16)
Failed to load nativemvm library: C:\Program Files\MATLAB2016b\bin\win64\nativemvm.dll: Can't find dependent libraries

Réponses (2)

J.Eric Tkaczyk
J.Eric Tkaczyk le 13 Fév 2017
I had the same problem and solved it in the following way.
First allow this dll you are loading to see all the other dlls it depends upon. You do this by editing the Windows Environment PATH variable to include C:\Program Files\MATLAB\R2016b\bin\win64\
Then add dependency to your module to engine.jar. In IntelliJ this is done in ProjectStrucuture/Modules/yourModule dialog box and select the dependency tab, plus sign and navigate to your engine.jar location
Make all the dlls needed for java by including this command line argument in the run configuration: -Djava.library.path="C:\Program Files\MATLAB\R2016b\bin\win64"
Now include this as the first line of you main method to have all the methods available to your application: System.loadLibrary("nativemvm");
  3 commentaires
Chibing Gng
Chibing Gng le 20 Fév 2017
Dear Alex Phung and J.Eric Tkaczyk,
I installed Matlab 2016b, but no extern\engines\java\jar\engine.jar. Could you tell me how you installed ?
Thanks Spencer
Bo Li
Bo Li le 15 Mar 2017
This file is part of the R2016b MATLAB installation by default.

Connectez-vous pour commenter.


Bo Li
Bo Li le 15 Mar 2017
Adding "<matlabroot>/bin/win64" to the system environment variable PATH is required, otherwise, Java doesn't know where to find the dynamic shared libraries. "-Djava.library.path" helps only in finding the native library directly used by the Java file, but it doesn't help the native library to find its dependent libraries.
If requesting a user to set the PATH is not desired, maybe the Java command can be placed in a batch file which sets the PATH before running the Java command.
  2 commentaires
James Hong
James Hong le 22 Avr 2020
Also, make sure that the entry is added to the top of the PATH environment variable.
Justin Livermore
Justin Livermore le 8 Août 2023
Thank you. I added it to the top and it fixed my issue. Glad I found this.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by