Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Using a JFileChooser in Your JFrame

import java.awt.BorderLayout; import java.awt.Font; import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JLabel; public class FileSamplePanel {   public static void main(String args[]) {     JFrame frame = new JFrame("JFileChooser Popup");     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);     final JLabel directoryLabel = new JLabel(" ");     directoryLabel.setFont(new Font("Serif", Font.BOLD | Font.ITALIC, 36));     frame.add(directoryLabel, BorderLayout.NORTH);     final JLabel filenameLabel = new JLabel(" ");     filenameLabel.setFont(new Font("Serif", Font.BOLD | Font.ITALIC, 36));     frame.add(filenameLabel, BorderLayout.SOUTH);     JFileChooser fileChooser = new JFileChooser(".");     fileChooser.setControlButtonsAreShown(false);     frame.add(fileChooser, BorderLayout.CENTER);     frame.pack();     frame.setVisible(true);   } }