ExcelPackage.LicenseContext = LicenseContext.NonCommercial; // 關閉新許可模式通知 // 沒設置的話會跳出 Please set the excelpackage.licensecontext property var file = new FileInfo(@"D:\ExampleExcel.xlsx"); // 檔案路徑 using (var excel = new ExcelPackage()) { // 建立分頁 var ws = excel.Workbook.Worksheets.Add("MySheet"); // 寫入資料試試 ws.Cells[2, 1].Value = "測試測試"; // 儲存 Excel excel.SaveAs(file); }
// 特別注意,頁籤和儲存格等操作 是由 1 開始而非 0 // 打開存在的 Excel 檔案 var excelFile = new FileInfo(@"D:\ExampleExcel.xlsx"); using (var excel = new ExcelPackage(excelFile)) { // 指定頁籤 //ExcelWorksheet sheet1 = excel.Workbook.Worksheets[1]; // 這邊用是 1 在 Core 用是 0 = = ExcelWorksheet sheet1 = excel.Workbook.Worksheets["MySheet"]; // 可以使用頁籤名稱 #region -- 儲存格讀寫 -- // 寫入資料,[行-,列|] 或直接指定 ["儲存格"] sheet1.Cells[2, 1].Value = "開啟測試"; // 嚴謹一點可以用 GetValue 和 SetValue 來操作 //sheet1.Cells["B1"].Value = "開啟測試"; // 此兩行等價 sheet1.Cells[3, 3, 5, 5].Value = "多格操作測試"; // 從 (3, 3) 一路框到 (5, 5),包含頭尾 //sheet1.Cells["C3:E5"].Value = "多格操作測試"; // 此兩行等價 sheet1.Cells[3, 1].LoadFromText("LoadFromText Test"); // 從字串讀入資料,可用於寫入 CSV 之類的場合 var coll = new List<string> { "LoadFromCollTest1", "LoadFromCollTest2", "LoadFromCollTest3" }; sheet1.Cells[4, 1].LoadFromCollection(coll); // 從集合類型的參數讀入資料,會按照行(= D1 E1 F1...)依序排列 // 可從 LoadFromCollection 推測 LoadFromDataReader, LoadFromDataTable, LoadFromArrays 等函式的行為,故省略 #endregion -- 儲存格讀寫 -- #region -- 儲存格樣式 -- // 可以用宣告的方式一併操作指定區域內的儲存格 using (var range = sheet1.Cells[1, 1, 1, 5]) // 直接選取 A1 到 A5 { range.Value = "樣式測試"; range.Style.Font.Bold = true; // 粗體 range.Style.Font.Color.SetColor(Color.White); // 字體顏色 range.Style.Fill.PatternType = ExcelFillStyle.Solid; // 設定背景填色方法,沒有這一行就上背景色會報錯 // Solid = 填滿;另外還有斜線、交叉線、條紋等 range.Style.Fill.BackgroundColor.SetColor(Color.DarkBlue); // 儲存格顏色 } #endregion -- 儲存格樣式 -- excel.Save(); // 儲存變更 }
void Main() { var data = new List<testClass> { new testClass{ name = "香蕉" }, new testClass{ name = "番茄" }, new testClass{ name = "蘋果" }, new testClass{ name = "鳳梨" } }; var excel = ExportExcel(data); excel.Dump(); } public FileInfo ExportExcel<T>(IEnumerable<T> data) where T: class { //var output = new MemoryStream(); var output = new FileInfo("D:\\ExportExcelTest-" + DateTime.Now.ToString("yyyy-MM-dd-hh-mm-ss") + ".xlsx"); using (var excel = new ExcelPackage(output)) { var ws = excel.Workbook.Worksheets.Add("Sheet1"); // 建立分頁 // 用反射拿出有 DisplayName 的屬性 var properties = typeof(T) .GetProperties() .Where(prop => prop.IsDefined(typeof(DisplayNameAttribute))); var rows = data.Count() + 1; // 直:資料筆數(記得加標題列) var cols = properties.Count(); // 橫:類別中有別名的屬性數量 if(rows > 0 && cols > 0) { ws.Cells[1, 1].LoadFromCollection(data, true); // 寫入資料 // 儲存格格式 var colNumber = 1; foreach (var prop in properties) { // 時間處理,如果沒指定儲存格格式會變成 通用格式,就會以 int=時間戳 的方式顯示 if (prop.PropertyType.Equals(typeof(DateTime)) || prop.PropertyType.Equals(typeof(DateTime?))) { ws.Cells[2, colNumber, rows, colNumber].Style.Numberformat.Format = "mm-dd-yy hh:mm:ss"; } colNumber += 1; } // 樣式準備 using (var range = ws.Cells[1, 1, rows, cols]) { ws.Cells.Style.Font.Name = "新細明體"; ws.Cells.Style.Font.Size = 12; ws.Cells.Style.HorizontalAlignment = ExcelHorizontalAlignment.Center; // 置中 ws.Cells.AutoFitColumns(); // 欄寬 // 框線 range.Style.Border.Top.Style = ExcelBorderStyle.Thin; range.Style.Border.Left.Style = ExcelBorderStyle.Thin; range.Style.Border.Right.Style = ExcelBorderStyle.Thin; range.Style.Border.Bottom.Style = ExcelBorderStyle.Thin; // 標題列 var title = ws.Cells[1, 1, 1, cols]; title.Style.Fill.PatternType = ExcelFillStyle.Solid; // 設定背景填色方法 title.Style.Fill.BackgroundColor.SetColor(Color.LightGray); } } else { Debug.WriteLine("未列印資料,請檢查是否傳入資料為空,或指定類別未具有公開且加上 DisplayName 的屬性。"); } excel.Save(); // 儲存 Excel } //output.Position = 0; // 如果是使用 stream 的方式讓人下載,請記得將指標移回資料起始 return output; } public class testClass { [DisplayName("編號")] public Guid id { set; get; } = Guid.NewGuid(); [DisplayName("名稱")] public string name { set; get; } }
worksheet.Cells[FromRow, FromColumn, ToRow, ToColumn].Merge = true;
ws.Column(1).Width = 50;
ws.Cells["A1:K20"].AutoFitColumns();