I have a problem with the JFileChooser
under Ubuntu 12.04. I use this code to set the look and feel:
javax.swing.UIManager.setLookAndFeel(javax.swing.UIManager.getSystemLookAndFeelClassName());
And it looks like this. It's very uncomfortable to use and it looks very ugly:
http://www9.picfront.org/token/9sRH/2012/05/15/2062476.jpg
I would like it to look like this:
http://www4.picfront.org/token/1lpa/2012/05/15/2062477.jpg
Using the hint from this post, I tried to use FileDialog
instead of the FileChooser
. But FileDialog
throws an exception when i start it in LOAD
mode and click on the "open" button.
The way i create the Dialog:
FileDialog fd = new FileDialog(frame, "Test", FileDialog.LOAD);
fd.setVisible(true);
The Exception:
Exception in thread "Thread-0" java.lang.NullPointerException
at sun.awt.X11.GtkFileDialogPeer.setFileInternal(GtkFileDialogPeer.java:79)
at sun.awt.X11.GtkFileDialogPeer.run(Native Method)
at sun.awt.X11.GtkFileDialogPeer.showNativeDialog(GtkFileDialogPeer.java:172)
at sun.awt.X11.GtkFileDialogPeer.access$000(GtkFileDialogPeer.java:39)
at sun.awt.X11.GtkFileDialogPeer$1.run(GtkFileDialogPeer.java:114)
I am using Oracle JDK7 under Ubuntu Linux 12.04 with Gnome 3 (if this helps).
Does anybody got an idea how either i could improve the look of the JFileChooser
or get the FileDialog
working?
A NullPointerException usually means you are pointing to something that is not there. I suppose the reference you try to point to is lost, during runtime.
Just for completeness' sake, here's the java-forum.org thread where you posted about the same question in German.
User eRaaaa posted a fix to this bug, which subsequently was turned into a bug report at bugs.sun.com that was reviewed positively.
I had the same problem in a Java GUI project I was working on. I set it to use "zenity" terminal program to call the native file-chooser on Linux/unix systems. Note that this solution does not require importing any extra Java libraries (You must have Zenity installed on Linux though), and also works fine on Windows: