List of usage examples for javax.swing JFileChooser getFileView
public FileView getFileView()
From source file:Main.java
public static void main(String[] a) { JFrame frame = new JFrame("JFileChooser Popup"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JFileChooser fileChooser = new JFileChooser("."); FileView fileView = fileChooser.getFileView(); frame.add(fileChooser, BorderLayout.CENTER); frame.pack();// www . ja v a 2 s . c o m frame.setVisible(true); }