How do I debug my Java source code that I am calling from the MATLAB environment?

5 次查看(过去 30 天)
Based on the following link:
In order to debug Java code being called from the MATLAB environment, use the following steps:
1. Relaunch MATLAB using the -jdb flag from a command prompt. For example:
matlab -jdb
(by default this flag will enable debugging support in the VM on port 4444)
2. You can either launch a Java debugger from a Java IDE such as Eclipse and Intellij, or call jdb from the system command prompt. MATLAB displays the message “JVM is being started with debugging enabled” and provides the appropriate information. For example:
jdb -connect com.sun.jdi.SocketAttach:port=4444
3. After attaching the debugger you will be able to set breakpoints as you normally would.
Can anyone explains these steps more detail, especially for step 3? How to attach the debugger (Assuming I'm using eclipse).
Thanks

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Call Java from MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by