Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

improving JFileChooser under Ubuntu 12.04 (GTK)

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:

enter image description here
(source: picfront.org)

I would like it to look like this:

enter image description here
(source: picfront.org)

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?

like image 472
sMau Avatar asked Oct 08 '22 20:10

sMau


2 Answers

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:

private File fileSelection(boolean savemode) {
        String os = System.getProperty("os.name");
        File input = null;
        String zenity = "zenity --file-selection --title=Open";
        String filestring;
        if ((os.indexOf("nix")!=-1 || os.indexOf("nux")!=-1)) {
            //Use native Linux file selection.
            try {
                if (savemode) {
                    zenity ="zenity --file-selection --title=Save --save";
                }
                Process p = Runtime.getRuntime().exec(zenity);  
                BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));  
                StringBuffer sb = new StringBuffer();  
                String line;
                /*while ((line = br.readLine()) != null) {  
                  sb.append(line).append("\n");  
                } */
                sb.append(br.readLine());
                filestring = sb.toString();  
                if (filestring.equals("null")) {
                    return null;
                }
                System.out.println(filestring);
                input = new File(filestring);
            } catch (IOException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }
        } else {
            final JFileChooser fc = new JFileChooser();
            int returnVal;
            if (savemode) {
                returnVal = fc.showSaveDialog(fc);
            } else {
                returnVal = fc.showOpenDialog(fc);  
            }
            if (returnVal == JFileChooser.APPROVE_OPTION) {
                input = fc.getSelectedFile();
            }
        }
        return input;
    }
like image 169
NoBugs Avatar answered Oct 23 '22 18:10

NoBugs


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.

like image 1
Bernhard Reiter Avatar answered Oct 23 '22 18:10

Bernhard Reiter