我试图提示"打开文件窗口"从java中的命令提示符并计划将所选文件作为输入文件而不是
FileInputStream fis=new FileInputStream(args[0]);
但还没有成功,请告诉我如何在java中的命令提示符下执行此操作。
答案 0 :(得分:2)
您可以使用JFileChooser
从对话框中选择文件。
假设您想在Java Swing应用程序之外启动它,您可以继续下一步:
final JFileChooser fc = new JFileChooser();
// Open the dialog using null as parent component if you are outside a
// Java Swing application otherwise provide the parent comment instead
int returnVal = fc.showOpenDialog(null);
if (returnVal == JFileChooser.APPROVE_OPTION) {
// Retrieve the selected file
File file = fc.getSelectedFile();
try (FileInputStream fis = new FileInputStream(file)) {
// Do something here
}
}
的更多详情