为什么JFileChooser 打开点击的文件夹打开的速度超级慢????
JFileChooser chooser = new JFileChooser();
int returnVal = chooser.showOpenDialog(parent);
if(returnVal == JFileChooser.APPROVE_OPTION) {
System.out.println("You chose to open this file: " +
chooser.getSelectedFile().getName());
}
为什么JFileChooser 打开点击的文件夹打开的速度超级慢????
比WINDOWS 自带的慢了不知多少!!!
特别是当所点击的文件夹中有超过计划10个文件时候.