我尝试允许用户使用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);
}
}