List of usage examples for javax.swing JFileChooser getName
public String getName(File f)
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("."); String name = fileChooser.getName(new File(".")); frame.add(fileChooser, BorderLayout.CENTER); frame.pack();//from w ww. j av a 2 s.c om frame.setVisible(true); }