views:

237

answers:

2

Hi,

I am set to create a file explorer using Java. The aim is to emulate the behavior of the default explorer as closely as possible, whatever may be the underlying OS.

I have done NO GUI programming in Java.

I have looked-up Swing, SWT and JFace, and I am beginning my project with this tutorial: http://www.ibm.com/developerworks/opensource/library/os-ecgui1/

I would like to know your opinions about the best approach to tackle this problem. If you could comment on complexity of coding, portability and OS-independence, and efficiency, it would be great.

Is there anything else I should know? Do some other ways exist?

Thanks a lot!


Thanks for the answers and replies.

Looks like I will choose Swing to implement the file explorer. What gives me the creeps is the thought that there would be nothing to mimic the default explorer view... Could you please provide some pointers about it? Do I get list of files, get icons and then arrange them in a grid fashion on the screen to show the default explorer view?

+3  A: 

I'd start with How to Use File Choosers, but the example in org.netbeans.swing.outline.Outline, discussed here, is appealing.

Addendum: @Gilbert Le Blanc raises an excellent point about the ease & portability of Swing. In contrast, SWT requires slightly more effort to deploy, but some users prefer the greater fidelity of org.eclipse.swt.widgets.FileDialog, as shown here.

Addendum: I notice that FileDialog displays a more native-looking window, as seen here. You might try it on your target platform(s).

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class NewMain extends JFrame {

    public static void main(String[] args) {
        final JFrame frame = new NewMain();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(new JButton("Select") {
            {
                addActionListener(new ActionListener() {
                    @Override
                    public void actionPerformed(ActionEvent e) {
                        FileDialog fd = new FileDialog(frame, "Test");
                        fd.setVisible(true);
                        System.out.println(fd.getFile());
                    }
                });
            }
        });
        frame.pack();
        frame.setVisible(true);
    }
}
trashgod
Sorry about the incorrect link.
trashgod
I've added an example using `java.awt.FileDialog`, which may suit your needs better.
trashgod
+4  A: 

You would be better off using Swing. You need different versions of SWT and JFace for different operating systems.

The best approach is to start off simple, and add to what you have as you learn more.

To get you started, you need a JFrame with two JPanel children.

You'll need to add a JMenuBar to the JFrame. JMenu items are added to the JMenuBar. JMenuItem items are added to the JMenu.

Oracle's Swing Overview will help you add more Swing components to your project.

Gilbert Le Blanc
+1 for cross-platform portability and step-wise refinement.
trashgod
Pardon me if I am wrong, but I could see only JFileChooser in Swing, and it can display the open/save dialogue box; but I want something similar to a file explorer.So far, I haven't been able to see a way of doing that using JFileChooser.
Chaitanya
@user299988: You're going to have to build a file explorer from lots of Swing components. I gave you a list of components to start with in my answer.
Gilbert Le Blanc
"Orcale's Swing Overview", hehehe, not used to that, should have been "Sun's Swing Overview" :P
zengr