Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.io.File;
import javax.swing.JFileChooser;

public class Main {
    public static JFileChooser makeFileChooser() {
        final JFileChooser temp = new JFileChooser();
        final String dir = System.getProperty("user.dir");
        final File fileDir = new File(dir);
        temp.setCurrentDirectory(fileDir);
        return temp;
    }
}