Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

File Explorer using Java - how to go about it?

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?

like image 248
Chaitanya Avatar asked May 26 '10 15:05

Chaitanya


People also ask

How do I open Java File Explorer?

In the Open With window, click the Browse button to open the File Explorer window. You need to find the Java executable file (java.exe file) on your computer hard drive. It is often located in the "Program Files\Java" or "Program Files (x86)\Java" folder, within a possible subfolder below the Java folder.

How do I go to File Explorer?

To check it out in Windows 11, select it on the taskbar or the Start menu, or press the Windows logo key + E on your keyboard. How to use File Explorer: To pin a folder to Quick access, right-click (or press and hold) the folder and select Pin to Quick access.

How do I find the path of a file in Java?

In Java, for NIO Path, we can use path. toAbsolutePath() to get the file path; For legacy IO File, we can use file. getAbsolutePath() to get the file path.


2 Answers

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.

like image 156
Gilbert Le Blanc Avatar answered Oct 31 '22 09:10

Gilbert Le Blanc


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.*;

/** @see https://stackoverflow.com/questions/2914733 */
public class FileDialogTest {

    public static void main(String[] args) {
        final JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLayout(new GridLayout(0, 1));
        frame.add(new JButton(new AbstractAction("Load") {

            @Override
            public void actionPerformed(ActionEvent e) {
                FileDialog fd = new FileDialog(frame, "Test", FileDialog.LOAD);
                fd.setVisible(true);
                System.out.println(fd.getFile());
            }
        }));
        frame.add(new JButton(new AbstractAction("Save") {

            @Override
            public void actionPerformed(ActionEvent e) {
                FileDialog fd = new FileDialog(frame, "Test", FileDialog.SAVE);
                fd.setVisible(true);
                System.out.println(fd.getFile());
            }
        }));
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }
}
like image 30
trashgod Avatar answered Oct 31 '22 09:10

trashgod