ExportService.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. using System;
  2. using System.Collections.Generic;
  3. using Library;
  4. using LitJson;
  5. using System.Data;
  6. using System.Threading;
  7. using NPOI.HSSF.UserModel;
  8. using NPOI.XSSF.UserModel;
  9. using NPOI.SS.UserModel;
  10. using NPOI.HSSF.Util;
  11. namespace MySystem
  12. {
  13. public class ExportService
  14. {
  15. public readonly static ExportService Instance = new ExportService();
  16. private ExportService()
  17. { }
  18. public void Start()
  19. {
  20. Thread th = new Thread(StartDo);
  21. th.IsBackground = true;
  22. th.Start();
  23. }
  24. public void StartDo()
  25. {
  26. while (true)
  27. {
  28. string content = RedisDbconn.Instance.RPop<string>("ExportQueue");
  29. if(!string.IsNullOrEmpty(content))
  30. {
  31. try
  32. {
  33. StartExport(content);
  34. }
  35. catch(Exception ex)
  36. {
  37. function.WriteLog(ex.ToString() + "\n\n", "导出日志异常");
  38. }
  39. }
  40. else
  41. {
  42. Thread.Sleep(5000);
  43. }
  44. }
  45. }
  46. public void StartExport(string content)
  47. {
  48. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "导出日志");
  49. JsonData jsonObj = JsonMapper.ToObject(content);
  50. string Operater = jsonObj["Operater"].ToString();
  51. string SqlString = jsonObj["SqlString"].ToString();
  52. string FileName = jsonObj["FileName"].ToString();
  53. int MaxCount = int.Parse(jsonObj["MaxCount"].ToString());
  54. //创建工作薄
  55. var workbook = new XSSFWorkbook();
  56. //单元格样式
  57. ICellStyle style = workbook.CreateCellStyle();
  58. style.BorderBottom = BorderStyle.Thin;
  59. style.BorderTop = BorderStyle.Thin;
  60. style.BorderLeft = BorderStyle.Thin;
  61. style.BorderRight = BorderStyle.Thin;
  62. style.BottomBorderColor = HSSFColor.Black.Index;
  63. style.TopBorderColor = HSSFColor.Black.Index;
  64. style.LeftBorderColor = HSSFColor.Black.Index;
  65. style.RightBorderColor = HSSFColor.Black.Index;
  66. //创建表
  67. var table = workbook.CreateSheet("Sheet1");
  68. string FilePath = function.ReadInstance("/WebRootPath.txt");
  69. function.WriteLog(FilePath, "导出日志");
  70. //填充数据
  71. int i = 0;
  72. int page = 0;
  73. int pageSize = 200;
  74. bool op = true;
  75. while(op)
  76. {
  77. var fs = System.IO.File.OpenWrite(FilePath + "/exportfile/" + FileName + ".xlsx");
  78. int skip = page * pageSize;
  79. string sql = SqlString + " limit " + skip + "," + pageSize;
  80. function.WriteLog(sql, "导出日志");
  81. DataTable dt = CustomerSqlConn.dtable(sql, MysqlConn.readconnstr);
  82. if(dt.Rows.Count > 0)
  83. {
  84. foreach (DataRow dr in dt.Rows)
  85. {
  86. i += 1;
  87. if(i <= MaxCount || MaxCount == 0)
  88. {
  89. if(i == 1)
  90. {
  91. //创建表头
  92. var title = table.CreateRow(0);
  93. int j = 0;
  94. foreach (DataColumn dc in dt.Columns)
  95. {
  96. var cell = title.CreateCell(j);
  97. cell.CellStyle = style;
  98. cell.SetCellValue(dc.ColumnName);
  99. j += 1;
  100. }
  101. }
  102. var row = table.CreateRow(i);
  103. int index = 0;
  104. foreach (DataColumn dc in dt.Columns)
  105. {
  106. var cell = row.CreateCell(index);
  107. string val = dr[dc.ColumnName].ToString();
  108. cell.CellStyle = style;
  109. cell.SetCellValue(val);
  110. index += 1;
  111. }
  112. }
  113. else
  114. {
  115. op = false;
  116. }
  117. }
  118. //打开xls文件,如没有则创建,如存在则在创建是不要打开该文件
  119. workbook.Write(fs); //向打开的这个xls文件中写入mySheet表并保存。
  120. page += 1;
  121. }
  122. else
  123. {
  124. op = false;
  125. }
  126. fs.Dispose();
  127. }
  128. if(i > 0)
  129. {
  130. string FileUrl = MysqlConn.sourceHost + "exportfile/" + FileName + ".xlsx";
  131. function.WriteLog(FileUrl, "导出日志");
  132. CustomerSqlConn.op("insert into ExportExcels (CreateDate,FileName,FileUrl,SysId) values ('" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "','" + FileName + "','" + FileUrl + "'," + Operater + ")", MysqlConn.connstr);
  133. function.WriteLog("insert into ExportExcels (CreateDate,FileName,FileUrl,SysId) values ('" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "','" + FileName + "','" + FileUrl + "'," + Operater + ")", "导出日志");
  134. function.WriteLog("end", "导出日志");
  135. }
  136. }
  137. }
  138. }