public void actionPerformed(ActionEvent e) {
JFileChooser jfc = new JFileChooser();
jfc.setName("请选择本地存放文件夹");
jfc.setDialogTitle("请选择本地存放文件夹");
jfc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int rc = jfc.showOpenDialog(frmEverbox);
if(rc == JFileChooser.APPROVE_OPTION )
rootpathField.setText(jfc.getSelectedFile().getAbsolutePath());
}
});
sl_panel.putConstraint(SpringLayout.NORTH, selectRootPathButton, -4, SpringLayout.NORTH, label_3);