我想在 jfilechooser 中显示当前目录的父文件夹。
我想显示..
引用父文件夹的文件夹
问问题
1319 次
2 回答
3
使用像这样以文件路径作为参数的构造函数。
JFileChooser jfc = new JFileChooser(".\\..");
于 2013-02-27T05:53:42.000 回答
2
这是实现您请求的功能的“尝试”,我遇到的问题是不可能完全复制系统正在执行的操作。
基本上,目录组合框需要某种本机File
对象(在 Windows 的情况下是 a sun.awt.shell.Win32ShellFolder2
)。但似乎没有任何方法可以让我们从提供的 API 中创建它们(而且您不想手动创建它们,因为它会破坏外观和跨平台功能)。
import core.util.MethodInvoker;
import java.awt.EventQueue;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javax.swing.JFileChooser;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.filechooser.FileSystemView;
import javax.swing.plaf.ComponentUI;
public class TestFileChooser {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
System.out.println(UIManager.getSystemLookAndFeelClassName());
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}
JFileChooser fc = new JFileChooser(new MyFileSystemView());
fc.showOpenDialog(null);
}
});
}
public static class MyFileSystemView extends FileSystemView {
@Override
public File[] getFiles(File dir, boolean useFileHiding) {
File[] files = super.getFiles(dir, useFileHiding);
List<File> fileList = new ArrayList<>(Arrays.asList(files));
if (!isFileSystemRoot(dir)) {
File newPath = FileSystemView.getFileSystemView().createFileObject(dir, "/..");
fileList.add(0, newPath);
}
files = fileList.toArray(files);
return files;
}
@Override
public File createNewFolder(File containingDir) throws IOException {
File newFolder = new File(containingDir + File.separator + "New Folder");
if (!newFolder.mkdir()) {
newFolder = null;
}
return newFolder;
}
}
}
于 2013-02-27T10:34:45.137 回答