mysqlexcel数据库class
/**
@author yangenxiong
*
*/
class importTableChooser extends JFileChooser {
private MainFrame mainFrame;
private Database db;
public importTableChooser(MainFrame mainFrame, Database db) {
this.mainFrame = mainFrame;
this.db = db;
this.setFileSelectionMode(DIRECTORIES_ONLY);
}
public void approveSelection() {
File file = this.getSelectedFile();
if (file.isDirectory()) {
//用户选择了目录
File targetFile = new File(file.getAbsolutePath() + File.separator +
this.db.getDatabaseName() + ".xls");
this.mainFrame.importTable();
} else {
this.mainFrame.importTable();
}
super.approveSelection();
}
}
全网最新最细最实用WPS零基础入门到精通全套教程!带你真正掌握WPS办公! 内含Excel基础操作、函数设计、数据透视表等
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号