how to invoke java program from matlab
1 次查看(过去 30 天)
显示 更早的评论
Hie.
I am working on a project where I need to invoke java code from MATLAB, either from command window or from a .m file.
I tried using command system('java myProg_class'), where 'myProg_class is class file of my program and it's saved in the default MATLAB directory. But I'm getting error that 'java' commannd isn't recognized.
Please someone help me with this ASAP....
thanks in advance.
--
Neha
0 个评论
回答(1 个)
Kaustubha Govind
2011-5-6
The syntax that you are using is used to invoke the Java interpreter from the system shell. You need to compile your code into a .jar or .class file to be able to use it from MATLAB. Please see Using Java Libraries from MATLAB for more information.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Call Java from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!