中心屏幕JFileChooser

时间:2016-09-19 07:55:21

标签: java jfilechooser jinternalframe

我想将JFileChooser的位置设置在JInternalFrame的中心位置:

JFileChooser fileChooser = new JFileChooser();
fileChooser.setCurrentDirectory(new File(System.getProperty("user.home")));
fileChooser.setLocation();

2 个答案:

答案 0 :(得分:0)

您可以在每个组件中嵌入JFileChooser

// Your JInternal Frame
JInternalFrame inFrame = new JInternalFrame("", true, true, true, true);

// Your JFileChooser
JFileChooser fileChooser = new JFileChooser();
fileChooser.setCurrentDirectory(new File(System.getProperty("user.home")));

// put filechooser in internal frame
inFrame.add(fileChooser);

答案 1 :(得分:0)

fileChooser.showOpenDialog(null);