我想让我的JFileChooser从详细信息视图开始,而不是它开始的“列表”视图.你如何做?
您可以从ActionMap
获取Action:
JFrame frame = new JFrame();
JFileChooser fileChooser = new JFileChooser(".");
Action details = fileChooser.getActionMap().get("viewTypeDetails");
details.actionPerformed(null);
fileChooser.showOpenDialog(frame);
原文链接:https://www.f2er.com/java/121768.html