0

我创建了一个简单的程序,您可以在其中选择一个文件,并希望返回文件路径的字符串,我不太确定我在这里做错了什么。

public static String createWindow() {

    JFrame.setDefaultLookAndFeelDecorated(true);
    JDialog.setDefaultLookAndFeelDecorated(true);
    JFrame frame = new JFrame("JComboBox Test");
    frame.setLayout(new FlowLayout());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JButton inbutton = new JButton("Select Input File");

    inbutton.addActionListener(new ActionListener() {

       String imagePath;

       public void actionPerformed(ActionEvent ae) {
          JFileChooser fileChooser = new JFileChooser();
          int returnValue = fileChooser.showOpenDialog(null);
          if (returnValue == JFileChooser.APPROVE_OPTION) {
             File selectedFile = fileChooser.getSelectedFile();
             imagePath = selectedFile.getPath();
          }
       }
    });

    frame.add(inbutton);
    frame.pack();
    frame.setVisible(true);
    return imagePath;
}
4

1 回答 1

2

您试图在调用该方法时立即返回一个值,但在某些事件发生之前结果将不可用。你的逻辑是错误的。您应该做的是在模式对话框而不是 JFrame 中显示按钮。对话框的模式将有效地暂停程序流程,从显示对话框的点开始,直到对话框不再可见。

于 2013-05-26T21:20:03.533 回答