为什么我的对话框没有打开?

时间:2017-05-06 21:27:20

标签: java jfilechooser

我尝试允许用户使用JFileChooser选择文件。它编译得很好,但没有打开对话框,我无法弄清楚发生了什么。任何帮助表示赞赏。

import java.io.File; 
import javax.swing.JFileChooser; 

public class Dummy {
    public static void main (String[] args)
    {
        JFileChooser fc = new JFileChooser(); 
        fc.setCurrentDirectory(new File("C:/Users/AMDX12/Desktop"));
        fc.setDialogTitle("Choose File");
        fc.showOpenDialog(null); 
    }
}

0 个答案:

没有答案