gpt4 book ai didi

java - 如何在详细信息 View 中启动 JFileChooser?

转载 作者:搜寻专家 更新时间:2023-10-30 21:22:15 24 4
gpt4 key购买 nike

我希望我的 JFileChooser 在详细信息 View 中启动,而不是它启动时的“列表” View 。你是怎么做到的?

最佳答案

您可以从 ActionMap 中获取 Action:

JFrame frame = new JFrame();
JFileChooser fileChooser = new JFileChooser(".");
Action details = fileChooser.getActionMap().get("viewTypeDetails");
details.actionPerformed(null);
fileChooser.showOpenDialog(frame);

关于java - 如何在详细信息 View 中启动 JFileChooser?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16292502/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com