티스토리 뷰

public class test {
	public static void main(String[] args) {
		new Frame();
	}
}

-------------------------------------------------------------------------

import javax.swing.JFileChooser;import javax.swing.filechooser.FileNameExtensionFilter;

public class Frame {	
		private JFileChooser fc;

		public Frame() {
			fc = new JFileChooser();
			fc.setFileFilter(new FileNameExtensionFilter( "Microsoft Excel", "xls"));
			fc.setAcceptAllFileFilterUsed(false);
			fc.showOpenDialog(null);
		}
}
댓글