java實現將資料庫中的資料匯入到excle

2021-08-30 17:46:39 字數 770 閱讀 5855

hssfworkbook workbook = new hssfworkbook();

hssfsheet sheet = workbook.createsheet(「渠道列表」);

listlistchannelputing = channelputingservice.findall();

//新增資料行,並且設定單元格資料

int rownum = 1;

//headers表示excel表中第一行的表頭

hssfrow row = sheet.createrow(0);

//在excel表中新增表頭

for(int i=0;i//在表中存放查詢到的資料放入對應的列

for(int i=0;i******dateformat sf = new ******dateformat("yyyymmdd");

string date=sf.format(new date());

string filename = "渠道投放計畫管理" +date + ".xls";//設定要匯出的檔案的名字

response.setheader("content-disposition", "attachment;filename=" +new string( filename.getbytes("gb2312"), "iso8859-1" ));

response.flushbuffer();

workbook.write(response.getoutputstream());

資料庫互導

1 sqlserver與access互導 方法一 用sql語句 匯出到access insert into openrowset microsoft.jet.oledb.4.0 x a.mdb admin a表 select from 資料庫名.b表 匯入access insert into b表 ...

centos postgresql資料庫匯入匯出

匯入整個資料庫 psql u postgres 使用者名稱 資料庫名 預設時同使用者名稱 data dum.sql 匯出整個資料庫 pg dump h localhost u postgres 使用者名稱 資料庫名 預設時同使用者名稱 data dum.sql 匯出某個表 pg dump h loc...

orcle 資料庫plsql cmd資料的匯入匯出

1.plslq資料匯出 1 匯出資料庫表結構 2 匯出表資料 3 匯入 注意 在使用plsql匯入.sql資料表結構時,如果本地新建使用者或者表空間與匯出檔案裡邊的使用者名稱或者表空間不一樣,那麼會匯入失敗,檢查匯入檔案.sql裡邊的使用者名稱及表空間名,修改後再匯入。二.cmd 匯出匯入 1.匯出...