NPOI讀寫Excel檔案.net版
阿新 • • 發佈:2019-02-13
workbook.getSheet("封面").getRow(0).cells[0].setCellValue("TestCell");
for (int i = 0; i <= sheet.LastRowNum;i++ )
{
foreach (ICell cell in sheet.GetRow(i).Cells)
{
/*
* Excel資料Cell有不同的型別,當我們試圖從一個數字型別的Cell讀取出一個字串並寫入資料庫時,就會出現Cannot get a text value from a numeric cell的異常錯誤。
* 解決辦法:先設定Cell的型別,然後就可以把純數字作為String型別讀進來了
*/
cell.SetCellType(CellType.String);
cell.SetCellValue((Int32.Parse(cell.StringCellValue) * 2).ToString());
}
}
//把編輯過後的工作薄重新儲存為excel檔案
FileStream fs2 = File.Create(