forked from neil3d/excel2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JsonExporter.cs
95 lines (85 loc) · 3.21 KB
/
JsonExporter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using System;
using System.IO;
using System.Data;
using System.Text;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace excel2json
{
/// <summary>
/// 将DataTable对象,转换成JSON string,并保存到文件中
/// </summary>
class JsonExporter
{
Dictionary<string, Dictionary<string, object>> m_data;
/// <summary>
/// 构造函数:完成内部数据创建
/// </summary>
/// <param name="sheet">ExcelReader创建的一个表单</param>
/// <param name="headerRows">表单中的那几行是表头</param>
public JsonExporter(DataTable sheet, int headerRows, bool lowcase)
{
if (sheet.Columns.Count <= 0)
return;
if (sheet.Rows.Count <= 0)
return;
m_data = new Dictionary<string, Dictionary<string, object>>();
//--以第一列为ID,转换成ID->Object的字典
int firstDataRow = headerRows - 1;
for (int i = firstDataRow; i < sheet.Rows.Count; i++)
{
DataRow row = sheet.Rows[i];
string ID = row[sheet.Columns[0]].ToString();
if (ID.Length <= 0)
continue;
var rowData = new Dictionary<string, object>();
foreach (DataColumn column in sheet.Columns)
{
object value = row[column];
// 去掉数值字段的“.0”
if (value.GetType() == typeof(double))
{
double num = (double)value;
if ((int)num == num)
value = (int)num;
}
string fieldName = column.ToString();
// 表头自动转换成小写
if (lowcase)
fieldName = fieldName.ToLower();
if (!string.IsNullOrEmpty(fieldName))
rowData[fieldName] = value;
}
m_data[ID] = rowData;
}
}
/// <summary>
/// 将内部数据转换成Json文本,并保存至文件
/// </summary>
/// <param name="jsonPath">输出文件路径</param>
public void SaveToFile(string filePath, Encoding encoding, bool exportArray)
{
if (m_data == null)
throw new Exception("JsonExporter内部数据为空。");
//-- 转换为JSON字符串
string json;
if (exportArray)
{
List<object> values = new List<object>();
foreach (var obj in m_data.Values)
values.Add(obj);
json = JsonConvert.SerializeObject(values, Formatting.Indented);
}
else
{
json = JsonConvert.SerializeObject(m_data, Formatting.Indented);
}
//-- 保存文件
using (FileStream file = new FileStream(filePath, FileMode.Create, FileAccess.Write))
{
using (TextWriter writer = new StreamWriter(file, encoding))
writer.Write(json);
}
}
}
}