Call of a jar-file (compiled with matlab), throw complete stack (of matlab errors) back to java
조회 수: 2 (최근 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
댓글 수: 0
채택된 답변
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 Exchange에서 Java Package Integration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!