123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- using System;
- using System.IO;
- using System.Data;
- using System.Text;
- using System.Collections.Generic;
- namespace excel2json
- {
- /// <summary>
- /// 根据表头,生成C#类定义数据结构
- /// 表头使用三行定义:字段名称、字段类型、注释
- /// </summary>
- class CSDefineGenerator
- {
- struct FieldDef
- {
- public string name;
- public string type;
- public string comment;
- }
- string mCode;
- public string code {
- get {
- return this.mCode;
- }
- }
- public CSDefineGenerator(string excelName, ExcelLoader excel, string excludePrefix)
- {
- //-- 创建代码字符串
- StringBuilder sb = new StringBuilder();
- sb.AppendLine("//");
- sb.AppendLine("// 1. 每个 Sheet 形成一个 Struct 定义, Sheet 的名称作为 Struct 的名称");
- sb.AppendLine("// 2. 表格约定:第一行是变量名称,第二行是变量类型");
- sb.AppendLine();
- sb.AppendFormat("// Generate From {0}.xlsx", excelName);
- sb.AppendLine();
- sb.AppendLine();
- for (int i = 0; i < excel.Sheets.Count; i++)
- {
- DataTable sheet = excel.Sheets[i];
- sb.Append(_exportSheet(sheet, excludePrefix));
- }
- sb.AppendLine();
- sb.AppendLine("// End of Auto Generated Code");
- mCode = sb.ToString();
- }
- private string _exportSheet(DataTable sheet, string excludePrefix)
- {
- if (sheet.Columns.Count < 0 || sheet.Rows.Count < 2)
- return "";
- string sheetName = sheet.TableName;
- if (excludePrefix.Length > 0 && sheetName.StartsWith(excludePrefix))
- return "";
- // get field list
- List<FieldDef> fieldList = new List<FieldDef>();
- DataRow typeRow = sheet.Rows[0];
- DataRow commentRow = sheet.Rows[1];
- foreach (DataColumn column in sheet.Columns)
- {
- // 过滤掉包含指定前缀的列
- string columnName = column.ToString();
- if (excludePrefix.Length > 0 && columnName.StartsWith(excludePrefix))
- continue;
- FieldDef field;
- field.name = column.ToString();
- field.type = typeRow[column].ToString();
- field.comment = commentRow[column].ToString();
- fieldList.Add(field);
- }
- // export as string
- StringBuilder sb = new StringBuilder();
- sb.AppendFormat("public class {0}\r\n{{", sheet.TableName);
- sb.AppendLine();
- foreach (FieldDef field in fieldList)
- {
- sb.AppendFormat("\tpublic {0} {1}; // {2}", field.type, field.name, field.comment);
- sb.AppendLine();
- }
- sb.Append('}');
- sb.AppendLine();
- sb.AppendLine();
- return sb.ToString();
- }
- public void SaveToFile(string filePath, Encoding encoding)
- {
- //-- 保存文件
- using (FileStream file = new FileStream(filePath, FileMode.Create, FileAccess.Write))
- {
- using (TextWriter writer = new StreamWriter(file, encoding))
- writer.Write(mCode);
- }
- }
- }
- }
|