pdf模式 資料庫資料匯出

2021-06-27 17:12:11 字數 789 閱讀 1819

/*** 

* 匯出

* @throws filenotfoundexception 

*/public string  excel() throws filenotfoundexception

//  1建立hssfworkbook

hssfworkbook hssfwork=new hssfworkbook();

// 2建立sheet

hssfsheet sheet = hssfwork.createsheet(tablecname);

// 3建立標題row(行)

hssfrow row = sheet.createrow(0);

// 4建立單元格

for (int i = 0; i < columns.size(); i++)

//5 從資料庫裡取出所有資料

listdatalist=selectdataservice.queryforlist("select * from "+tablename);

//6便利下所有資料

//i迴圈是迴圈一條一條的   ,j迴圈是迴圈一條資料裡的每個值

for (int i = 0; i < datalist.size(); i++)

}fileoutputstream fos=new fileoutputstream(pathname);

//放進路徑

try catch (ioexception e) finally catch (ioexception e)

}return null;

}

匯出資料庫

exp 引數例項 匯出整個例項 exp wjh orcl file wjh.dmp log wjh.log full y consistent y direct y wjh應具有dba許可權 匯出某個使用者所有物件 exp wjh orcl file wjh.dmp log wjh.log owne...

資料匯出Excel表 資料庫資料匯出

public static hashmapcolumn new hashmap static param table 要匯出的表 param name 匯出的excel表名稱 表頭 throws exception public void createexcel string table,strin...

MySQL匯出匯出資料庫

預設匯出路徑為mysql的內建路徑,因此這裡都加上了 documents 作為路徑。匯出整個資料庫 mysqldump u root p test documents test.sql 匯出資料庫乙個表 mysqldump h hostname u username p password datab...