필터 지우기
필터 지우기

Is it possible to recover a corrupted *.mlapp file?

조회 수: 14 (최근 30일)
Matt Brown
Matt Brown 2022년 8월 10일
댓글: Robert Philbrick 2024년 5월 7일
I was working on an app and had just got the thing to work when the file became corrupted. When I tried to run the file (and now when I try to open it), I get an error dialog:
"Error loading 'PlotDigitizer.mlapp'.
And then this appears in the command window:
"Error using which
C:\Work\Matlab\Apps\Plot Digitizer\PlotDigitizer.mlapp: Can't open file.
Error in run (line 55)
pathscript = evalin('caller', strcat('which(''', script, ''')'));"
I tried to find a solution to this online and came up with reseting preferences... which didn't work.
This the second time this has occured, forcing me to loose several hours of work, and I am not even sure what I did to cause it, if anything. It seemingly worked one minute and then not the next.
Is App Designer that unstable? Is there a way to recover this or at least copy the text portion of the code?
Also, what options do I have for backup or autosave?
  댓글 수: 2
Matt J
Matt J 2022년 8월 10일
If you restart Matlab, is the result any different?
Matt Brown
Matt Brown 2022년 8월 11일
Negative. Reseting the preferences required a restart of Matlab.
I attached the *.mlapp file to the original post if you want to give it a shot.

댓글을 달려면 로그인하십시오.

채택된 답변

Robert Philbrick
Robert Philbrick 2022년 8월 15일
편집: Robert Philbrick 2022년 8월 15일
The app became corrupt due to an invalid character entered on line 413:
if(c == <escape character here>) % Exit when Esc key is pressed
The "escape" character that you used is not supported in the MLAPP code file. This is a bug and I have reported it to the App Designer team.
I fixed the app (attached) so that it will now load by removing the escape character and replacing it with 'escape'. A better way to detect if the user has pressed the escape key is to add a KeyPressFcn to your app's UIFigure and use the event.Key in the callback to determine if escape was pressed:
function UIFigureKeyPress(app, event)
key = event.Key;
% Check if key == 'escape'
end
  댓글 수: 8
Sai Sandeep Chigurupati
Sai Sandeep Chigurupati 2024년 5월 6일
Does the attached temp file give any clue?
Robert Philbrick
Robert Philbrick 2024년 5월 7일
@Sai Sandeep Chigurupati that zip file seems invalid as well and not recongized as a zip file. I would recommend that you contact customer support (https://www.mathworks.com/support/contact_us.html).

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Max Scharrenbroich
Max Scharrenbroich 2024년 4월 4일
If the .mlapp is corrupted you can still recover user-defined code and other things by opening the .mlapp as an archive using 7-zip.

카테고리

Help CenterFile Exchange에서 Package and Share Apps에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by