ExcelUtil.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. using System.Text;
  6. using NPOI.HPSF;
  7. using NPOI.HSSF.UserModel;
  8. using NPOI.SS.UserModel;
  9. using NPOI.SS.Util;
  10. using System.IO;
  11. namespace DataUpload
  12. {
  13. public class ExcelUtil
  14. {
  15. /// <summary>
  16. /// DataTable导出到Excel文件
  17. /// </summary>
  18. /// <param name="dtSource">源DataTable</param>
  19. /// <param name="headerTextDic">头文本,如不传默认使用DataTable.Columns填充</param>
  20. /// <param name="fileName">文件名</param>
  21. public static void Export(DataTable dtSource, Dictionary<string, string> headerTextDic, string fileName)
  22. {
  23. if ((headerTextDic == null || headerTextDic.Count==0) && dtSource.Columns.Count > 0)
  24. {
  25. headerTextDic = new Dictionary<string, string>();
  26. foreach (DataColumn dc in dtSource.Columns)
  27. {
  28. headerTextDic.Add(dc.ColumnName, dc.ColumnName);
  29. }
  30. }
  31. using (var ms = Export(dtSource, headerTextDic, fileName, false))
  32. {
  33. using (var fs = new FileStream(fileName, FileMode.Create, FileAccess.Write))
  34. {
  35. var data = ms.ToArray();
  36. fs.Write(data, 0, data.Length);
  37. fs.Flush();
  38. }
  39. }
  40. }
  41. /// <summary>
  42. /// DataTable导出到Excel文件
  43. /// </summary>
  44. /// <param name="dtSource">源DataTable</param>
  45. /// <param name="headerTextDic">头文本,如不传默认使用DataTable.Columns填充</param>
  46. /// <param name="fileName">文件名</param>
  47. public static void ExportSimple(DataTable dtSource, string[] headerTextDic, string fileName)
  48. {
  49. if(dtSource.Columns.Count<headerTextDic.Length) return;
  50. Dictionary<string, string> ht = new Dictionary<string, string>();
  51. for (int i=0;i<headerTextDic.Length;i++)
  52. {
  53. ht.Add(dtSource.Columns[i].ColumnName, headerTextDic[i]);
  54. }
  55. Export(dtSource, ht, fileName);
  56. }
  57. #region private
  58. /// <summary>
  59. /// DataTable导出到Excel的MemoryStream
  60. /// </summary>
  61. /// <param name="dtSource">源DataTable</param>
  62. /// <param name="headerTextDic">头文本</param>
  63. /// <param name="fileName">文件名</param>
  64. /// <param name="isShowTitle">是否显示表头</param>
  65. /// <returns></returns>
  66. private static MemoryStream Export(DataTable dtSource, Dictionary<string, string> headerTextDic, string fileName, bool isShowTitle)
  67. {
  68. var workbook = new HSSFWorkbook();
  69. var sheet = workbook.CreateSheet() as HSSFSheet;
  70. SetSummaryInformation(workbook);
  71. var dateStyle = workbook.CreateCellStyle() as HSSFCellStyle;
  72. var format = workbook.CreateDataFormat() as HSSFDataFormat;
  73. dateStyle.DataFormat = format.GetFormat("yyyy-mm-dd");
  74. var arrColWidth = GetColWidth(dtSource, headerTextDic);
  75. var rowIndex = 0;
  76. var colHeaderStyle = GetColHeaderStyle(workbook);
  77. var contentDataStyle = GetContentDataStyle(workbook);
  78. foreach (DataRow row in dtSource.Rows)
  79. {
  80. if (rowIndex == 65536 || rowIndex == 0)
  81. {
  82. if (rowIndex != 0)
  83. {
  84. sheet = workbook.CreateSheet() as HSSFSheet;
  85. }
  86. SetDataTitle(headerTextDic, fileName, isShowTitle, workbook, sheet);
  87. SetColHeader(dtSource, headerTextDic, isShowTitle, workbook, sheet, arrColWidth, colHeaderStyle);
  88. if (isShowTitle)
  89. {
  90. rowIndex = 2;
  91. }
  92. else
  93. {
  94. rowIndex = 1;
  95. }
  96. }
  97. var dataRow = sheet.CreateRow(rowIndex) as HSSFRow;
  98. SetContentData(dtSource, headerTextDic, dateStyle, row, dataRow, workbook, contentDataStyle);
  99. rowIndex++;
  100. }
  101. using (var ms = new MemoryStream())
  102. {
  103. workbook.Write(ms);
  104. ms.Flush();
  105. ms.Position = 0;
  106. return ms;
  107. }
  108. }
  109. /// <summary>
  110. /// 右击文件/属性信息
  111. /// </summary>
  112. /// <param name="workbook"></param>
  113. private static void SetSummaryInformation(HSSFWorkbook workbook)
  114. {
  115. var dsi = PropertySetFactory.CreateDocumentSummaryInformation();
  116. dsi.Company = "NPOI";
  117. workbook.DocumentSummaryInformation = dsi;
  118. var si = PropertySetFactory.CreateSummaryInformation();
  119. si.Author = "文件作者信息"; //填加xls文件作者信息
  120. si.ApplicationName = "创建程序信息"; //填加xls文件创建程序信息
  121. si.LastAuthor = "最后保存者信息"; //填加xls文件最后保存者信息
  122. si.Comments = "RDIFramework.NET,基于.NET的快速信息化系统开发、整合框架,给用户和开发者最佳的.Net框架部署方案。http://www.cnblogs.com/huyong"; //填加xls文件作者信息
  123. si.Title = "标题信息"; //填加xls文件标题信息
  124. si.Subject = "主题信息";//填加文件主题信息
  125. si.CreateDateTime = DateTime.Now;
  126. workbook.SummaryInformation = si;
  127. }
  128. /// <summary>
  129. /// 取得列宽
  130. /// </summary>
  131. /// <param name="dtSource"></param>
  132. /// <param name="headerTextDic"></param>
  133. /// <returns></returns>
  134. private static int[] GetColWidth(DataTable dtSource, Dictionary<string, string> headerTextDic)
  135. {
  136. var arrColWidth = new int[headerTextDic.Count];
  137. var index = 0;
  138. foreach (var item in headerTextDic)
  139. {
  140. arrColWidth[index] = Encoding.GetEncoding(936).GetBytes(item.Value).Length;
  141. index++;
  142. }
  143. index = 0;
  144. foreach (var item in headerTextDic)
  145. {
  146. for (var i = 0; i < dtSource.Rows.Count; i++)
  147. {
  148. for (var j = 0; j < dtSource.Columns.Count; j++)
  149. {
  150. if (item.Key.ToLower() == dtSource.Columns[j].ColumnName.ToLower())
  151. {
  152. var intTemp = Encoding.GetEncoding(936).GetBytes(dtSource.Rows[i][j].ToString()).Length;
  153. if (intTemp > arrColWidth[index])
  154. {
  155. arrColWidth[index] = intTemp;
  156. }
  157. break;
  158. }
  159. }
  160. }
  161. index++;
  162. }
  163. return arrColWidth;
  164. }
  165. /// <summary>
  166. /// 表头及样式
  167. /// </summary>
  168. /// <param name="headerTextDic"></param>
  169. /// <param name="fileName"></param>
  170. /// <param name="isShowTitle"></param>
  171. /// <param name="workbook"></param>
  172. /// <param name="sheet"></param>
  173. private static void SetDataTitle(Dictionary<string, string> headerTextDic, string fileName, bool isShowTitle, HSSFWorkbook workbook, HSSFSheet sheet)
  174. {
  175. if (isShowTitle)
  176. {
  177. var headerRow = sheet.CreateRow(0) as HSSFRow;
  178. headerRow.HeightInPoints = 25;
  179. headerRow.CreateCell(0).SetCellValue(fileName);
  180. var headStyle = workbook.CreateCellStyle() as HSSFCellStyle;
  181. headStyle.Alignment = HorizontalAlignment.Center;
  182. var font = workbook.CreateFont() as HSSFFont;
  183. font.FontHeightInPoints = 20;
  184. font.Boldweight = 700;
  185. headStyle.SetFont(font);
  186. headerRow.GetCell(0).CellStyle = headStyle;
  187. sheet.AddMergedRegion(new Region(0, 0, 0, headerTextDic.Count - 1));
  188. }
  189. }
  190. /// <summary>
  191. /// 列头數據
  192. /// </summary>
  193. /// <param name="dtSource"></param>
  194. /// <param name="headerTextDic"></param>
  195. /// <param name="isShowTitle"></param>
  196. /// <param name="workbook"></param>
  197. /// <param name="sheet"></param>
  198. /// <param name="arrColWidth"></param>
  199. private static void SetColHeader(DataTable dtSource, Dictionary<string, string> headerTextDic, bool isShowTitle, HSSFWorkbook workbook, HSSFSheet sheet, int[] arrColWidth, HSSFCellStyle colHeaderStyle)
  200. {
  201. HSSFRow headerRow = null;
  202. if (isShowTitle)
  203. {
  204. headerRow = sheet.CreateRow(1) as HSSFRow;
  205. }
  206. else
  207. {
  208. headerRow = sheet.CreateRow(0) as HSSFRow;
  209. }
  210. var index = 0;
  211. foreach (var item in headerTextDic)
  212. {
  213. foreach (DataColumn column in dtSource.Columns)
  214. {
  215. if (column.ColumnName.ToLower() == item.Key.ToLower())
  216. {
  217. headerRow.CreateCell(index).SetCellValue(item.Value);
  218. headerRow.GetCell(index).CellStyle = colHeaderStyle;
  219. var colWidth = arrColWidth[index];
  220. if (colWidth > 254)
  221. {
  222. colWidth = 254;
  223. }
  224. sheet.SetColumnWidth(index, (colWidth + 1) * 256);
  225. index++;
  226. break;
  227. }
  228. }
  229. }
  230. }
  231. /// <summary>
  232. /// 填充内容
  233. /// </summary>
  234. /// <param name="dtSource"></param>
  235. /// <param name="headerTextDic"></param>
  236. /// <param name="dateStyle"></param>
  237. /// <param name="row"></param>
  238. /// <param name="dataRow"></param>
  239. private static void SetContentData(DataTable dtSource, Dictionary<string, string> headerTextDic, HSSFCellStyle dateStyle, DataRow row, HSSFRow dataRow, HSSFWorkbook workbook, HSSFCellStyle contentDataStyle)
  240. {
  241. var index = 0;
  242. foreach (var item in headerTextDic)
  243. {
  244. foreach (DataColumn column in dtSource.Columns)
  245. {
  246. if (item.Key.ToLower() == column.ColumnName.ToLower())
  247. {
  248. var newCell = dataRow.CreateCell(index) as HSSFCell;
  249. var drValue = row[column].ToString();
  250. switch (column.DataType.ToString())
  251. {
  252. case "System.String"://字符串类型
  253. newCell.SetCellValue(drValue);
  254. break;
  255. case "System.DateTime"://日期类型
  256. DateTime dateV;
  257. DateTime.TryParse(drValue, out dateV);
  258. if (drValue.Contains("上午 12:00:00"))
  259. {
  260. drValue = dateV.ToString("yyyy/MM/dd");
  261. }
  262. else
  263. {
  264. if (!string.IsNullOrEmpty(drValue))
  265. {
  266. drValue = dateV.ToString();
  267. }
  268. }
  269. newCell.SetCellValue(drValue);
  270. newCell.CellStyle = dateStyle;//格式化显示
  271. break;
  272. case "System.Boolean"://布尔型
  273. var boolV = false;
  274. bool.TryParse(drValue, out boolV);
  275. newCell.SetCellValue(boolV);
  276. break;
  277. case "System.Int16"://整型
  278. case "System.Int32":
  279. case "System.Int64":
  280. case "System.Byte":
  281. var intV = 0;
  282. int.TryParse(drValue, out intV);
  283. newCell.SetCellValue(intV);
  284. break;
  285. case "System.Decimal"://浮点型
  286. case "System.Double":
  287. double doubV = 0;
  288. double.TryParse(drValue, out doubV);
  289. newCell.SetCellValue(doubV);
  290. break;
  291. case "System.DBNull"://空值处理
  292. newCell.SetCellValue("");
  293. break;
  294. default:
  295. newCell.SetCellValue("");
  296. break;
  297. }
  298. dataRow.GetCell(index).CellStyle = contentDataStyle;
  299. index++;
  300. break;
  301. }
  302. }
  303. }
  304. }
  305. #region 樣式
  306. /// <summary>
  307. /// 列头樣式
  308. /// </summary>
  309. /// <param name="workbook"></param>
  310. /// <returns></returns>
  311. private static HSSFCellStyle GetColHeaderStyle(HSSFWorkbook workbook)
  312. {
  313. var headStyle = workbook.CreateCellStyle() as HSSFCellStyle;
  314. headStyle.Alignment = HorizontalAlignment.Center;
  315. var font = workbook.CreateFont() as HSSFFont;
  316. font.FontHeightInPoints = 10;
  317. font.Boldweight = 700;
  318. headStyle.SetFont(font);
  319. var palette = workbook.GetCustomPalette();
  320. palette.SetColorAtIndex((short)10, (byte)0, (byte)176, (byte)240);
  321. headStyle.FillForegroundColor = (short)10;
  322. headStyle.FillPattern = FillPattern.SolidForeground;
  323. headStyle.BorderBottom = BorderStyle.Thin;
  324. headStyle.BorderLeft = BorderStyle.Thin;
  325. headStyle.BorderTop = BorderStyle.Thin;
  326. headStyle.BorderRight = BorderStyle.Thin;
  327. return headStyle;
  328. }
  329. /// <summary>
  330. /// 填充内容樣式
  331. /// </summary>
  332. /// <param name="workbook"></param>
  333. /// <returns></returns>
  334. private static HSSFCellStyle GetContentDataStyle(HSSFWorkbook workbook)
  335. {
  336. var headStyle = workbook.CreateCellStyle() as HSSFCellStyle;
  337. headStyle.BorderBottom = BorderStyle.Thin;
  338. headStyle.BorderLeft = BorderStyle.Thin;
  339. headStyle.BorderTop = BorderStyle.Thin;
  340. headStyle.BorderRight = BorderStyle.Thin;
  341. return headStyle;
  342. }
  343. #endregion
  344. #endregion
  345. }
  346. }