Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException using CreateTable() / Java
61 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
Is there anyone here who is using the Yair's CreateTable() function.
I used this function to embed two java tables into my GUI. I didn't use the standard GUI uitable simply because the latter one provides me more flexibitlies.
But if I close my GUI, then I get two red java errors in workspace, in format:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at com.mathworks.widgets.spreadsheet.SpreadsheetScrollPane.cleanup(SpreadsheetScrollPane.java:571) at com.mathworks.hg.peer.UitablePeer$3.run(UitablePeer.java:149) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source)
Does anyone have a idea why this happens and how to solve this ?
By the way, I am not a java experts. How can I find out all the methods within a java (like jTable) object?
Thanks
0 Kommentare
Antworten (6)
Aleti venkatesh
am 12 Feb. 2020
Bearbeitet: Aleti venkatesh
am 12 Feb. 2020
I have a solution for that don't bother about that ..whenever encounter this type of error in matlab command window just you have to write this code ,which is shown in below...
opengl('save','software')
and then run the program again you have encounter same error ...
and then you just close matlab window and then open matlab freshly...
after that you run the program and code will be executed with out any errors.....
thank you.....
if you have any doubts please contact me via email....
this is my email id : venkydhoni2@gmail.com
1 Kommentar
John Libert
am 15 Mär. 2012
I get this same error, and most of the time MATLAB locks up. It generally happens when MATLAB is open overnight. I have never seen it while I am working. This should be looked at by tech support as I have lost data during big overnight runs.
3 Kommentare
Alistair
am 5 Mai 2013
I also get a similar error, which just starts repeatedly and continuously printing to the matlab command line. This happens only when I leave Matlab open and it's inactive, not processing data for a few hours -- I come back and its spewing
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
repeatedly.
Aleti venkatesh
am 12 Feb. 2020
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
I have solution for that don't bother about that ..whenever encounter this type of error in matlab command window just you have to write this code ,which is shown in below...
opengl('save','software')
and then run the program again you have encounter same error ...
and then you just close matlab window and then open matlab freshly...
after that you run the program and code will be executed with out any errors.....
thank you.....
if you have any doubts please contact me via email....
this is my email id : venkydhoni2@gmail.com
Thulasi Durai Durai Samy
am 20 Jun. 2012
I too have the same problem can some one support me also
0 Kommentare
Jeffery Devereux
am 11 Jan. 2018
I am going to try adding this to my code to catch the error before it crashes my program. It only happens when I leave it running all night.
%Have some Java javaControl = javaObjectEDT('javax.swing.JFrame'); pause(0.05); drawnow; % this never hurt anyone! fprintf(' \b');
0 Kommentare
Ondrej
am 10 Apr. 2022
What worked for me was to replace the line
tab.TableScrollPane.setRowHeader('');
with
tab.TableScrollPane.setRowHeaderView(javax.swing.JLabel(''))
Then no more "AWT-EventQueue-0" exceptions when closing the uitable.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!