我想将JFileChooser
的位置设置在JInternalFrame
的中心位置:
JFileChooser fileChooser = new JFileChooser();
fileChooser.setCurrentDirectory(new File(System.getProperty("user.home")));
fileChooser.setLocation();
答案 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);