我的JFileChooser在没有添加setLookAndFeel的情况下工作正常,并且它也可以添加它,但不会自动成为活动窗口。但是,如果我将其设置为活动窗口,则关闭窗口,然后再次按下打开JFileChooser的按钮,它将成为活动窗口。这是我的相关代码:
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
...
JFileChooser chooser = new JFileChooser();
chooser.setVisible(true);
chooser.requestFocus(true);
chooser.setCurrentDirectory(new File("/home/me/Documents"));
int retrieval = chooser.showSaveDialog(chooser);
提前致谢