我使用Netbeans的java应用程序。在我的应用程序中,我想要特定的文件夹URL来存储文件。我怎样才能做到这一点呢?有谁能帮帮我吗?
提前感谢:)
使用JFileChooser
, JFileChooser.DIRECTORIES_ONLY
看看这个教程:如何使用文件选择器
JFileChooser chooser = new JFileChooser();
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
您希望在swing应用程序中选择一个文件夹,对吗?你可以使用JFileChooser http://download.oracle.com/javase/tutorial/uiswing/components/filechooser.html
只选择一个文件夹,看看这个例子http://www.rgagnon.com/javadetails/java - 0370. - html
表示保存,选中http://download.oracle.com/javase/tutorial/essential/io/file.html
如果你需要澄清什么,就问。
我猜你想要一个打开文件对话框。
在Swing中,它被称为JFileChooser。
用法示例:
JFileChooser fc = new JFileChooser();
int returnVal = fc.showOpenDialog(yourJFrame);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();
// Do stuff with file
} else {
// User clicked cancel
}
yourJFrame应该是主窗口使用的JFrame。如果你没有null