JFileChooser如何选择多个文件,再如何得到这些文件的路径

是多个文件
2025-01-07 08:32:44
推荐回答(2个)
回答1:

JFileChooser jfilechooser = new JFileChooser();
jfilechooser.setMultiSelectionEnabled(true);//最重要一句,启用多选
jfilechooser.showOpenDialog(null);
System.out.println(jfilechooser.getSelectedFiles()[0].getAbsolutePath()+"\n"+jfilechooser.getSelectedFiles()[1].getAbsolutePath());//通过getSelectedFiles()获取一个file数组,然后遍历getAbsolutePath()取出绝对路径即可

回答2:

JFileChooser jfc = new JFileChooser();jfc.setFileSelectionMode(JFileChooser.MULTI_SELECTION_ENABLED_CHANGED_PROPERTY);int nRetVal = jfc.showOpenDialog(this);if (nRetVal == JFileChooser.APPROVE_OPTION) File[] files = jfc.getSelectedFiles();