国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > C# > 正文

C#開(kāi)發(fā)教程之利用特性自定義數(shù)據(jù)導(dǎo)出到Excel

2020-01-24 01:02:21
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

網(wǎng)上C#導(dǎo)出Excel的方法有很多。但用來(lái)用去感覺(jué)不夠自動(dòng)化。于是花了點(diǎn)時(shí)間,利用特性做了個(gè)比較通用的導(dǎo)出方法。只需要根據(jù)實(shí)體類(lèi),自動(dòng)導(dǎo)出想要的數(shù)據(jù)

1.在NuGet上安裝Aspose.Cells或者用微軟自帶類(lèi)庫(kù)也可以

2.需要導(dǎo)出的數(shù)據(jù)的實(shí)例類(lèi):

using System.ComponentModel;using System.Reflection;using System.Runtime.Serialization;public class OrderReport{[DisplayName("訂單編號(hào)")]public string orderNo { get; set; }[IgnoreDataMember]public DateTime orderTime { get; set; }[DisplayName("訂單時(shí)間")]public String orderTime_fomart { get { return orderTime.ToShortDateString(); } }[DisplayName("商品編碼")]public string itemCode { get; set; }[DisplayName("商品名稱(chēng)")]public string itemName { get; set; }} 

定義實(shí)體中加上 [DisplayName("訂單編號(hào)")]用來(lái)導(dǎo)出到Excel生成列名。不需在導(dǎo)出一一對(duì)應(yīng)寫(xiě)列名。[IgnoreDataMember]屬性是用來(lái)導(dǎo)出是忽略掉不用導(dǎo)出 。

關(guān)于特性的介紹詳細(xì)請(qǐng)參考MSDN。

3.實(shí)現(xiàn)導(dǎo)出方法:

/// <summary>/// 導(dǎo)出類(lèi)/// </summary>public class ExportHandle{/// <summary>/// 掛起訂單報(bào)表導(dǎo)出/// </summary>public static void execExportOrderReport(){var orderReportList = new List<OrderReport>(){new OrderReport() { orderNo= "XD00001",orderTime=DateTime.Now, itemCode="G001" ,itemName="辣條"} ,new OrderReport() { orderNo= "XD00002", orderTime=DateTime.Now,itemCode="G002" ,itemName="茶蛋"} ,new OrderReport() { orderNo= "XD00003", orderTime=DateTime.Now,itemCode="G003" ,itemName="切糕"} ,new OrderReport() { orderNo= "XD00004", orderTime=DateTime.Now,itemCode="G004" ,itemName="大蝦"} ,new OrderReport() { orderNo= "XD00005", orderTime=DateTime.Now,itemCode="G005" ,itemName="帝王蟹"}};string path = "OrderReport.xlsx";Console.WriteLine("開(kāi)始執(zhí)行導(dǎo)出");OutDataToExcel(orderReportList, "訂單報(bào)表", path);Console.WriteLine("導(dǎo)出完成:位置"+path);}/// <summary>/// 導(dǎo)出方法/// </summary>/// <typeparam name="T"></typeparam>/// <param name="list">導(dǎo)出的數(shù)據(jù)list</param>/// <param name="title">數(shù)據(jù)類(lèi)容標(biāo)題</param>/// <param name="path">導(dǎo)出excel存放路徑</param>public static void OutDataToExcel<T>(List<T> list, string title, string path){Workbook workbook = new Workbook(); //工作簿 Worksheet sheet = workbook.Worksheets[0]; //工作表 sheet.IsGridlinesVisible = false;//去掉初始單元線(xiàn)Cells cells = sheet.Cells;//單元格 //為標(biāo)題設(shè)置樣式 Style styleTitle = workbook.CreateStyle();//新增樣式 styleTitle.HorizontalAlignment = TextAlignmentType.Center;//文字居中 styleTitle.Font.Name = "微軟雅黑";//文字字體 styleTitle.Font.Size = 18;//文字大小 styleTitle.Font.IsBold = true;//粗體 //樣式1 標(biāo)題下方的日期Style style1 = workbook.CreateStyle();//新增樣式 style1.HorizontalAlignment = TextAlignmentType.Center;//文字居中 style1.Font.Name = "微軟雅黑";//文字字體 style1.Font.Size = 12;//文字大小 //樣式2 列名Style style2 = workbook.CreateStyle();//新增樣式 style2.HorizontalAlignment = TextAlignmentType.Center;//文字居中 style2.Font.Name = "微軟雅黑";//文字字體 style2.Font.Size = 12;//文字大小 style2.Font.IsBold = true;//粗體 style2.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin;style2.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin;style2.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin;style2.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin;//樣式3 數(shù)據(jù)的樣式Style style3 = workbook.CreateStyle();//新增樣式 style3.HorizontalAlignment = TextAlignmentType.Center;//文字居中 style3.Font.Name = "微軟雅黑";//文字字體 style3.Font.Size = 10;//文字大小 style3.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin;style3.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin;style3.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin;style3.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin;if (list.Count == 0) return;var t = list.First().GetType();//獲取列表的類(lèi)的屬性//通過(guò)反射篩選忽略掉[IgnoreDataMemberAttribute]的字段var properties = t.GetProperties().Where(x => x.GetCustomAttribute<IgnoreDataMemberAttribute>() == null);int Colnum = properties.Count();//表格列數(shù) int Rownum = list.Count;//表格行數(shù) //生成行1 標(biāo)題行 cells.Merge(0, 0, 1, Colnum);//合并單元格 cells[0, 0].PutValue(title);//填寫(xiě)內(nèi)容 cells[0, 0].SetStyle(styleTitle);cells.SetRowHeight(0, 38);//行高//生成行2 日期 cells.Merge(1, 0, 1, Colnum);//合并單元格 cells[1, 0].PutValue(DateTime.Now.ToShortDateString());//填寫(xiě)內(nèi)容 cells[1, 0].SetStyle(style1);cells.SetRowHeight(1, 20);//行高//列名及數(shù)據(jù)行int i = 0;foreach (var item in properties){var itemType = t.GetProperty(item.Name);var colName = itemType.GetCustomAttribute<DisplayNameAttribute>().DisplayName;//反射獲取字段的DisplayName特性值cells[2, i].PutValue(colName);cells[2, i].SetStyle(style2);cells.SetColumnWidth(i, colName.Length * 3);//設(shè)置列寬int k = 0;foreach (var rowdata in list){//反射遍歷添加數(shù)據(jù)object value = rowdata.GetType().GetProperty(item.Name).GetValue(rowdata, null);string ss = value == null ? "" : value.ToString();cells[3 + k, i].PutValue(ss);cells[3 + k, i].SetStyle(style3);cells.SetRowHeight(3 + k, 18);//設(shè)置行高k++;}i++;}workbook.Save(path);//生成Excel}} 

導(dǎo)出方法 OutDataToExcel<T>(List<T> list, Enum en, string path)用了泛型參數(shù),將任意的實(shí)體list自動(dòng)導(dǎo)出。

var properties = t.GetProperties().Where(x => AttributeAccessor.GetAttribute<IgnoreDataMemberAttribute>(x) == null);

采用lamda表達(dá)式在傳過(guò)來(lái)的實(shí)體屬性中篩選出

不是IgnoreDataMemberAttribute的屬性字段

foreach (var item in properties){}遍歷實(shí)體類(lèi)的屬性相當(dāng)于DataTable循環(huán)讀取數(shù)據(jù) object value = rowdata.GetType().GetProperty(item.Name).GetValue(rowdata, null); 通過(guò)屬性名稱(chēng)獲取屬性值。通過(guò)以上兩個(gè)步驟,實(shí)現(xiàn)自動(dòng)}

4.導(dǎo)出結(jié)果:

總結(jié),通過(guò)特性來(lái)實(shí)現(xiàn)通用的導(dǎo)出。只需要設(shè)置相關(guān)的類(lèi)的字段和特性值即可自定義導(dǎo)出

以上所述是小編給大家介紹的C#開(kāi)發(fā)教程之利用特性自定義數(shù)據(jù)導(dǎo)出到Excel,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)武林網(wǎng)網(wǎng)站的支持!

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 松原市| 张家口市| 乐清市| 宿州市| 隆回县| 新竹市| 孝义市| 东安县| 吉首市| 贡觉县| 得荣县| 盐池县| 横峰县| 大邑县| 丽江市| 栾川县| 金乡县| 衡阳县| 东辽县| 大港区| 加查县| 邳州市| 铜鼓县| 庄浪县| 乾安县| 阿克| 招远市| 醴陵市| 达日县| 西华县| 阿尔山市| 集安市| 元朗区| 彭山县| 平南县| 隆安县| 宝坻区| 赤城县| 永城市| 瑞金市| 岳池县|