程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 數據庫-請問:下邊的代碼如何使導出的是excel?謝謝!!

數據庫-請問:下邊的代碼如何使導出的是excel?謝謝!!

編輯:編程綜合問答
請問:下邊的代碼如何使導出的是excel?謝謝!!

class DumpTableChooser extends JFileChooser {

private MainFrame mainFrame;

private Database db;

public DumpTableChooser(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 + //File.separator =\
                this.db.getDatabaseName() + ".xls");//getAbsolutePath():返回抽象路徑名的絕對路徑名字符串
        this.mainFrame.executeDumpTable(targetFile, this.db);
    } else {
        this.mainFrame.executeDumpTable(file, this.db);
    }
    super.approveSelection();
}

}

最佳回答:


看不出來,核心代碼在executeDumpTable裡面

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved