我创建了一个界面,我想添加一个允许用户打开文件的功能。我正在使用AWT。我不明白如何使用FileDialog。您能给我一个例子或一个很好的链接来解释一下吗?
最佳答案
带有文件过滤功能的完整代码示例:
FileDialog fd = new FileDialog(yourJFrame, "Choose a file", FileDialog.LOAD);
fd.setDirectory("C:\\");
fd.setFile("*.xml");
fd.setVisible(true);
String filename = fd.getFile();
if (filename == null)
System.out.println("You cancelled the choice");
else
System.out.println("You chose " + filename);
关于java - 如何使用FileDialog?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7211107/