Call of a jar-file (compiled with matlab), throw complete stack (of matlab errors) back to java

1 回表示 (過去 30 日間)
Hallo,
I'm trying to integrate a compiled matlab-programm (as a jar-file) into a java-environment.
1) Is it possible to get a complete stack-trace back to original calling jar-file out of matlab? (Line numbers, functions, ...)
Up to now, it seems that I've to use something like that:
try
catch
msgText = getReport(ME,'extended','hyperlinks','off');
msgText2 = regexprep(msgText,'\s+',' ');
baseException = MException(msgID,msgText2);
throw(baseException);
end
2) Is it possible that the all exceptions are formated in that way, without defining a try-catch-block around the whole function?
Thank you

採用された回答

Sanjana Ramakrishnan
Sanjana Ramakrishnan 2017 年 1 月 19 日
1.The message text and stack information would be available in an 'MWException' class in Java. You can use a try/catch on the java side to capture the same. Refer the following example:
try{
foo.Class1 c = new foo.Class1();
c.foo();
}
catch(MWException e){
System.out.println(e.getMessage());
e.printStackTrace();
}
2. Since MWExceptions don’t include the message id, you can write a small function to capture the desired information rather than include it in each try catch.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeJava Package Integration についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by