package com.taover.bazhuayun.analysis.script.goodscollect; import java.awt.EventQueue; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JFileChooser; import javax.swing.JFrame; public class WindowMain { private JFrame frame; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { WindowMain window = new WindowMain(); window.frame.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the application. */ public WindowMain() { initialize(); } /** * Initialize the contents of the frame. */ private void initialize() { frame = new JFrame(); frame.setBounds(100, 100, 450, 300); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JFileChooser chooser = new JFileChooser(); chooser.setSize(200, 50); chooser.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { } }); frame.add(chooser); } }