ExportService.cs 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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. JsonData jsonObj = JsonMapper.ToObject(content);
  34. string FileName = jsonObj["FileName"].ToString();
  35. if(FileName == "执行")
  36. {
  37. StartExcute(content);
  38. }
  39. else
  40. {
  41. StartExport(content);
  42. }
  43. }
  44. catch(Exception ex)
  45. {
  46. function.WriteLog(ex.ToString() + "\n\n", "导出日志异常");
  47. }
  48. }
  49. else
  50. {
  51. Thread.Sleep(5000);
  52. }
  53. }
  54. }
  55. public void StartExcute(string content)
  56. {
  57. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "执行日志");
  58. JsonData jsonObj = JsonMapper.ToObject(content);
  59. string Operater = jsonObj["Operater"].ToString();
  60. string SqlString = jsonObj["SqlString"].ToString();
  61. string FileName = jsonObj["FileName"].ToString();
  62. int pageSize = int.Parse(jsonObj["MaxCount"].ToString());
  63. string ConnectStr = "";
  64. if(content.Contains("\"ConnectStr\""))
  65. {
  66. ConnectStr = jsonObj[prop_name: "ConnectStr"].ToString();
  67. }
  68. else
  69. {
  70. ConnectStr = MysqlConn.connstr;
  71. }
  72. //执行
  73. int page = 0;
  74. bool op = true;
  75. while(op)
  76. {
  77. int skip = page * pageSize;
  78. string sql = SqlString + " limit " + skip + "," + pageSize;
  79. function.WriteLog(sql, "执行日志");
  80. DataTable dt = CustomerSqlConn.dtable(sql, ConnectStr);
  81. if(dt.Rows.Count > 0)
  82. {
  83. string dosql = "";
  84. foreach (DataRow dr in dt.Rows)
  85. {
  86. dosql += dr[0].ToString();
  87. }
  88. CustomerSqlConn.op(dosql, ConnectStr);
  89. page += 1;
  90. }
  91. else
  92. {
  93. op = false;
  94. }
  95. }
  96. }
  97. public void StartExport(string content)
  98. {
  99. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "导出日志");
  100. JsonData jsonObj = JsonMapper.ToObject(content);
  101. string Operater = jsonObj["Operater"].ToString();
  102. string SqlString = jsonObj["SqlString"].ToString();
  103. string FileName = jsonObj["FileName"].ToString();
  104. int MaxCount = int.Parse(jsonObj["MaxCount"].ToString());
  105. string ConnectStr = "";
  106. if(content.Contains("\"ConnectStr\""))
  107. {
  108. ConnectStr = jsonObj[prop_name: "ConnectStr"].ToString();
  109. }
  110. else
  111. {
  112. ConnectStr = MysqlConn.connstr;
  113. }
  114. //创建工作薄
  115. var workbook = new XSSFWorkbook();
  116. //单元格样式
  117. ICellStyle style = workbook.CreateCellStyle();
  118. style.BorderBottom = BorderStyle.Thin;
  119. style.BorderTop = BorderStyle.Thin;
  120. style.BorderLeft = BorderStyle.Thin;
  121. style.BorderRight = BorderStyle.Thin;
  122. style.BottomBorderColor = HSSFColor.Black.Index;
  123. style.TopBorderColor = HSSFColor.Black.Index;
  124. style.LeftBorderColor = HSSFColor.Black.Index;
  125. style.RightBorderColor = HSSFColor.Black.Index;
  126. //创建表
  127. var table = workbook.CreateSheet("Sheet1");
  128. string FilePath = function.ReadInstance("/WebRootPath.txt");
  129. function.WriteLog(FilePath, "导出日志");
  130. //填充数据
  131. int i = 0;
  132. int page = 0;
  133. int pageSize = 200;
  134. bool op = true;
  135. while(op)
  136. {
  137. var fs = System.IO.File.OpenWrite(FilePath + "/exportfile/" + FileName + ".xlsx");
  138. int skip = page * pageSize;
  139. string sql = SqlString + " limit " + skip + "," + pageSize;
  140. function.WriteLog(sql, "导出日志");
  141. DataTable dt = CustomerSqlConn.dtable(sql, ConnectStr);
  142. if(dt.Rows.Count > 0)
  143. {
  144. foreach (DataRow dr in dt.Rows)
  145. {
  146. i += 1;
  147. if(i <= MaxCount || MaxCount == 0)
  148. {
  149. if(i == 1)
  150. {
  151. //创建表头
  152. var title = table.CreateRow(0);
  153. int j = 0;
  154. foreach (DataColumn dc in dt.Columns)
  155. {
  156. var cell = title.CreateCell(j);
  157. cell.CellStyle = style;
  158. cell.SetCellValue(dc.ColumnName);
  159. j += 1;
  160. }
  161. }
  162. var row = table.CreateRow(i);
  163. int index = 0;
  164. foreach (DataColumn dc in dt.Columns)
  165. {
  166. var cell = row.CreateCell(index);
  167. string val = dr[dc.ColumnName].ToString();
  168. cell.CellStyle = style;
  169. cell.SetCellValue(val);
  170. index += 1;
  171. }
  172. }
  173. else
  174. {
  175. op = false;
  176. }
  177. }
  178. //打开xls文件,如没有则创建,如存在则在创建是不要打开该文件
  179. workbook.Write(fs); //向打开的这个xls文件中写入mySheet表并保存。
  180. page += 1;
  181. }
  182. else
  183. {
  184. op = false;
  185. }
  186. fs.Dispose();
  187. }
  188. if(i > 0)
  189. {
  190. string FileUrl = MysqlConn.sourceHost + "exportfile/" + FileName + ".xlsx";
  191. function.WriteLog(FileUrl, "导出日志");
  192. CustomerSqlConn.op("insert into ExportExcels (CreateDate,FileName,FileUrl,SysId) values ('" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "','" + FileName + "','" + FileUrl + "'," + Operater + ")", ConnectStr);
  193. function.WriteLog("insert into ExportExcels (CreateDate,FileName,FileUrl,SysId) values ('" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "','" + FileName + "','" + FileUrl + "'," + Operater + ")", "导出日志");
  194. function.WriteLog("end", "导出日志");
  195. }
  196. }
  197. }
  198. }