Compiled application and -e flag

조회 수: 1 (최근 30일)
jason
jason 2014년 7월 8일
답변: jason 2014년 7월 9일
Hello. I am trying to deploy a compiled .m file using the Matlab Compiler. I can run the compiled program fine using
mcc -m compiletest.m
However, if I use mcc -e compiletest.m (in order to have no console window appear), the application will open and run, however it will not stay permanently open. My program creates a Java JFrame window. After a few seconds, the JFrame window will close. As I am trying to deploy a JAVA GUI, I would love to remove the console using the -e option. My Guess is that matlab is checking for a matlab figure window, and because there is only a JFrame, it can not find one. Then it exits. Any ideas??
As a simple example, this is compiletest.m
frame = javax.swing.JFrame();
frame.setTitle('any');
frame.setVisible(true);
pause
which creates compiletest.exe
Thanks

채택된 답변

Sanket Mishra
Sanket Mishra 2014년 7월 9일
"pause" is known to cause problem in standalone applications. Modify your code as below so that JFrame will not disappear
frame = javax.swing.JFrame();
frame.setTitle('any');
frame.setVisible(true);
waitfor(frame);
Compile above code using '-e' flag so that the console window does not appear.

추가 답변 (1개)

jason
jason 2014년 7월 9일
Beautiful solution. Thank you for your assistance Sanket

카테고리

Help CenterFile Exchange에서 MATLAB Compiler에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by