1import javax.swing.*;
 2  .
 3  .
 4  .
 5  public class jCutter extends JFrame {
 6  private JTextField textField;
 7  private JButton button;
 8  private JFileChooser fDialog;
 9  private JFrame frame;
10  .
11  .
12  .
13   button = new JButton();
14   button.addActionListener(new ActionListener() {
15   public void actionPerformed(ActionEvent e){
16   String msg;
17   fDialog=new JFileChooser(); //文件选择器
18   int result=fDialog.showOpenDialog(frame);
19   if(result==JFileChooser.APPROVE_OPTION){
20   String fname=fDialog.getName(fDialog.getSelectedFile());
21   frame.setTitle(fname);
22   msg="File Open Approved";
23   }
else
24   msg="File Open Cancelled";
25   JOptionPane.showMessageDialog(frame,msg); //提示框
26   }

27   }
);(王朝网络 wangchao.net.cn)
28-
29