Here you can find the source of makeFileChooser()
public static JFileChooser makeFileChooser()
//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; }//w w w.j a v a 2 s .c om }