NPOI匯出EXCEL樣式

2022-03-29 23:21:46 字數 1945 閱讀 5859

public

void export(datarequestrequest, dataresponseresponse)

#endregion

#region 單元格列值屬性樣式

//for (int jj = 0; jj < row1.cells.count; jj++)

//

= style;

#endregion

cell.setcellvalue(ordershops[i].shopname);

cell = row1.createcell(1);//

設定單元格的值

//設定列值樣式

= style;

cell.setcellvalue(order.shopno);

cell = row1.createcell(2

); cell.setcellvalue(ordershops[i].ordersaleno);

cell = row1.createcell(3

); cell.setcellvalue(ordershops[i].paydatetime.value.tostring(

"yyyy-mm-dd hh:mm:ss

"));

}#endregion

#endregion

#region

車輛銷售換

貨明細**

//建立表頭

isheet sheet6 = workbook.createsheet("車輛銷售

換貨明細**");

irow row6 = sheet6.createrow(0

); row6.heightinpoints = 30;//

行高 row6.createcell(0).setcellvalue("

換貨單號");

row6.createcell(

1).setcellvalue("新

車輛顏色");

row6.createcell(

2).setcellvalue("

原車輛型號型別");

var table =getchangeorder(shopgid.value, starttime, endtime);

j = 0

;

foreach (datarow item in

table.rows)

#endregion

cell.setcellvalue(dataconverthelper.getstring(item[

"changeno

"]));

cell = row1.createcell(1

); cell.setcellvalue(dataconverthelper.getstring(item[

"ordercolor

"]));

cell = row1.createcell(2

); cell.setcellvalue(dataconverthelper.getstring(item[

"ordertype

"]));

j++;

}#endregion

workbook.write(fs);

}response.tag =common.exportfile.exportflag;

response.objectdata = new

common.exportfile;}

catch

(exception ex)

}

NPOI 給匯出Excel新增簡單樣式

需求分析 如下圖為我之前匯出的excel資料,沒有一點樣式,標題行不明顯,各個列的資料緊湊,檢視資料時得手動拉寬每列,故這次要針對以上問題對它進行優化 結果展示 每日所有資料按每個總成乙個工作簿匯出到excel中 excel資料內容 excel表頭 public static hssfworkboo...

關於npoi1 2 4 匯出excel樣式設定

首先.aspx頁面引用 其次 npoi public class excelgameresult 輸出檔案到瀏覽器 excel文件流 http上下文 檔名 datatable轉換成excel文件流 public static memorystream rendertoexcel datatable ...

NPOI高效匯出Excel

using system.collections.generic using system.data using system.io using system.linq using npoi.hssf.usermodel using npoi.ss.usermodel using npoi.xssf...