MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.io.File;

import javax.swing.JFileChooser;
import javax.swing.filechooser.FileSystemView;

public class MainClass {

    public static void main(String[] args) {

        JFileChooser chooser = new JFileChooser();
        FileSystemView view = chooser.getFileSystemView();

        System.out.println("The roots of this filesystem are: ");
        File[] roots = view.getRoots();
        for (int i = 0; i < roots.length; i++) {
            System.out.println("  " + roots[i]);
        }

    }
}