C#将Excel表导出为json文件

作者:追风剑情 发布于:2018-5-26 12:07 分类:C#

示例:Excel表导出为json文件

4444.png

需要引用两个文件

5555.png

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Diagnostics;
  11. using System.IO;
  12. //文档 https://docs.microsoft.com/zh-cn/previous-versions/7fzyhc74%28v%3dvs.110%29
  13. //引用 C:\Windows\assembly\Microsoft.Office.Tools.Excel.v9.0.dll
  14. //引用COM Interop.Microsoft.Office.Interop.Excel.dll
  15. using Excel = Microsoft.Office.Interop.Excel;
  16.  
  17. namespace ExcelTool
  18. {
  19. public partial class MainForm : Form
  20. {
  21. private string configPath;
  22.  
  23. public MainForm()
  24. {
  25. InitializeComponent();
  26. Init();
  27. }
  28.  
  29. private void Init()
  30. {
  31. this.AllowDrop = true; //允许文件拖入窗口
  32. this.Load += MainForm_Load;
  33. this.DragEnter += MainForm_DragEnter;
  34. this.btnBrowser.MouseUp += btnBrowser_MouseUp;
  35. this.btnExportJson.MouseUp += btnExportJson_MouseUp;
  36. }
  37.  
  38. private void MainForm_Load(object sender, EventArgs e)
  39. {
  40. Console.WriteLine("MainForm_Load");
  41. }
  42.  
  43. private void MainForm_DragEnter(object sender, DragEventArgs e)
  44. {
  45. //获取拖进来的文件路径
  46. configPath = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString();
  47. this.textBoxPath.Text = configPath;
  48. }
  49.  
  50. private void btnBrowser_MouseUp(object sender, MouseEventArgs e)
  51. {
  52. ShowOpenFileDialog();
  53. this.textBoxPath.Text = configPath;
  54. }
  55.  
  56. private void btnExportJson_MouseUp(object sender, MouseEventArgs e)
  57. {
  58. if (string.IsNullOrWhiteSpace(configPath))
  59. {
  60. MessageBox.Show("请先选择要导出的excel文件", "提示");
  61. return;
  62. }
  63. ExportJson();
  64. }
  65.  
  66. private void ShowOpenFileDialog()
  67. {
  68. //打开选择文件对话框
  69. OpenFileDialog file = new OpenFileDialog();
  70. file.Filter = "Excel(*.xlsx)|*.xlsx|Excel(*.xls)|*.xls";
  71. file.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
  72. file.Multiselect = false;
  73. if (file.ShowDialog() == DialogResult.Cancel)
  74. return;
  75. //判断文件后缀
  76. var path = file.FileName;
  77. string fileSuffix = System.IO.Path.GetExtension(path);
  78. if (string.IsNullOrEmpty(fileSuffix))
  79. return;
  80. switch (fileSuffix)
  81. {
  82. case ".xls": //Excel 97-2003
  83.  
  84. break;
  85. case ".xlsx": //Excel 2007-更高
  86.  
  87. break;
  88. }
  89. configPath = path;
  90. }
  91.  
  92. private void ExportJson()
  93. {
  94.  
  95. //创建应用
  96. Excel.Application xlApp = (Excel.Application)(new Excel.ApplicationClass());
  97. if (xlApp == null)
  98. {
  99. MessageBox.Show("不能访问Excel");
  100. return;
  101. }
  102. //判断使用的Excel版本
  103. if (Convert.ToDouble(xlApp.Version) < 12)
  104. {
  105. //Excel 97-2003
  106. }
  107. else
  108. {
  109. //Excel 2007-更高
  110. }
  111. xlApp.Visible = false;
  112. xlApp.UserControl = true;
  113. object missing = System.Reflection.Missing.Value;
  114. //以只读方式打开文件
  115. Excel.Workbook wb = xlApp.Application.Workbooks.Open(configPath, missing, true, missing, missing, missing, missing, missing, missing, true, missing, missing, missing, missing, missing);
  116. //获取所有工作表
  117. Excel.Sheets sheets = wb.Worksheets;
  118. Excel.Worksheet worksheet;
  119. for (int i = 1; i <= sheets.Count; i++)
  120. {
  121. worksheet = (Excel.Worksheet)sheets[i];
  122. //构造json
  123. string json = BuildJson(worksheet);
  124. //保存文件
  125. SaveJson(worksheet.Name, json);
  126. }
  127.  
  128. xlApp.Quit();
  129. xlApp = null;
  130. //关掉excel进程
  131. Process[] procs = Process.GetProcessesByName("excel");
  132. foreach (Process pro in procs)
  133. {
  134. pro.Kill();
  135. }
  136. GC.Collect();
  137.  
  138. MessageBox.Show("导出成功");
  139. }
  140.  
  141. private void SaveJson(string fileName, string jsonStr)
  142. {
  143. string path = string.Format("{0}/{1}.txt", Path.GetDirectoryName(configPath), fileName);
  144. File.WriteAllText(path, jsonStr);
  145. }
  146.  
  147. private string BuildJson(Excel.Worksheet sheet)
  148. {
  149. if (null == sheet)
  150. return "";
  151. //获取行数、列数
  152. int usedRowCount = sheet.UsedRange.Cells.Rows.Count;
  153. int usedColumnCount = sheet.UsedRange.Cells.Columns.Count;
  154.  
  155. string[] COLUMN_LETTER = new string[]{
  156. "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N",
  157. "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"};
  158.  
  159. string C = COLUMN_LETTER[usedColumnCount - 1];
  160.  
  161. //获取数据类型定义区(即,第二行)
  162. Excel.Range typeRange = sheet.Cells.get_Range("A2", C + "2");
  163. object[,] typeValue2 = (object[,])typeRange.Value2;
  164.  
  165. //获取key定义区(即,第三行)
  166. Excel.Range keyRange = sheet.Cells.get_Range("A3", C + "3");
  167. object[,] keyValue2 = (object[,])keyRange.Value2;
  168.  
  169. //获取数据区(即,排除标题行)
  170. Excel.Range dataRange = sheet.Cells.get_Range("A4", C + usedRowCount);
  171. object[,] value2 = (object[,])dataRange.Value2;
  172.  
  173. StringBuilder sb = new StringBuilder();
  174. sb.AppendLine("[");
  175. string type, k, v;
  176. for (int i = 1; i <= dataRange.Rows.Count; i++)
  177. {
  178. //遍历时跳过ID为空的行
  179. if (null == value2[i, 1])
  180. continue;
  181. v = value2[i, 1].ToString();
  182. if (string.IsNullOrWhiteSpace(v))
  183. continue;
  184.  
  185. //构造json串
  186. sb.Append("{");
  187. for (int j = 1; j <= dataRange.Columns.Count; j++)
  188. {
  189. k = keyValue2[1, j].ToString();
  190. if (value2[i, j] == null)
  191. v = "";
  192. else
  193. v = value2[i, j].ToString();
  194.  
  195. type = typeValue2[1, j].ToString();
  196. switch(type)
  197. {
  198. case "int":
  199. sb.AppendFormat("\"{0}\":{1}", k, v);
  200. break;
  201. case "int[]":
  202. sb.Append(ParseIntArray(k, v));
  203. break;
  204. case "json":
  205. sb.Append(ParseJson(k, v));
  206. break;
  207. case "string":
  208. sb.AppendFormat("\"{0}\":\"{1}\"", k, v);
  209. break;
  210. case "string[]":
  211. sb.Append(ParseStringArray(k, v));
  212. break;
  213.  
  214. }
  215. if (j < dataRange.Columns.Count)
  216. sb.Append(",");
  217. }
  218. sb.Append("}");
  219. if (i < dataRange.Rows.Count)
  220. sb.AppendLine(",");
  221. }
  222. sb.AppendLine();
  223. sb.Append("]");
  224.  
  225. return sb.ToString();
  226. }
  227.  
  228. private string ParseIntArray(string k, string v)
  229. {
  230. string format = "\"{0}\":[{1}]";
  231. if (string.IsNullOrWhiteSpace(v))
  232. {
  233. return string.Format(format, k, "");
  234. }
  235. return string.Format("\"{0}\":[{1}]", k, v);
  236. }
  237.  
  238. private string ParseStringArray(string k, string v)
  239. {
  240. string format = "\"{0}\":[{1}]";
  241. if (string.IsNullOrWhiteSpace(v)) {
  242. return string.Format(format, k, "");
  243. }
  244. StringBuilder sb = new StringBuilder();
  245. string[] strArr = v.Split(',');
  246. int len = strArr.Length;
  247. for (int i=0; i<len; i++)
  248. {
  249. sb.AppendFormat("\"{0}\"", strArr[i]);
  250. if (i < len - 1)
  251. sb.Append(",");
  252. }
  253. return string.Format(format, k, sb.ToString());
  254. }
  255.  
  256. private string ParseJson(string k, string v)
  257. {
  258. if (string.IsNullOrWhiteSpace(v))
  259. return string.Format("\"{0}\":{{}}", k);
  260. return string.Format("\"{0}\":{1}", k, v);
  261. }
  262. }
  263. }

运行效果

11111.png

导出文件截图

2222.png

报错一
22222.png

解决方法
设置嵌入互操作类型为False

333333.png


如果在C:\Windows下没找到Microsoft.Office.Interop.Excel.dll还可用用NuGet安装

通过NuGet安装Microsoft.Office.Interop.Excel

11111.png

222.png

注意:如果选择的版本与电脑上安装的Excel版本不匹配,运行时会报错,此时只需重新安装下其他版本方可解决。我电脑上安装的是Excel2010,这里我安装的Microsoft.Office.Interop.Excel版本为12,经亲测完美运行



标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号