Here you can find the source of getFileChooser()
public static JFileChooser getFileChooser()
//package com.java2s; import javax.swing.JFileChooser; public class Main { private static final JFileChooser fc = new JFileChooser(); public static JFileChooser getFileChooser() { fc.resetChoosableFileFilters();/* ww w . ja v a 2 s. c o m*/ fc.setFileSelectionMode(JFileChooser.FILES_ONLY); return fc; } }