那是我在 JFileChooser 中选择文件的代码,现在我想选择多个文件该怎么做
JFileChooser chose=new JFileChooser();
chose.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int r=chose.showOpenDialog(new JFrame());
if(r == chose.APPROVE_OPTION){
String filepath= chose.getSelectedFile().getAbsolutePath();
}
如何使用 JFileChooser 选择多个文件请帮助...