2.3 C#逻辑操作代码
说明:对Excel转换后的List<T>进行后续操作;如:检测有效性、持久化存储等等
步骤:
①调用2.2代码,把Excel文件转换为List<T>。
②对List<T>进行有效性检测:必填项是否为空、是否有重复记录等等。
③对List<T>进行持久化存储操作。如:存储到数据库。
④返回操作结果。
代码:
public void ImportExcel(HttpContext context)
{
StringBuilder errorMsg = new StringBuilder(); // 错误信息
try
{
#region 1.获取Excel文件并转换为一个List集合
// 1.1存放Excel文件到本地服务器
HttpPostedFile filePost = context.Request.Files["filed"]; // 获取上传的文件
string filePath = ExcelHelper.SaveExcelFile(filePost); // 保存文件并获取文件路径
// 单元格抬头
// key:实体对象属性名称,可通过反射获取值
// value:属性对应的中文注解
Dictionary<string, string> cellheader = new Dictionary<string, string> {
{ "Name", "姓名" },
{ "Age", "年龄" },
{ "GenderName", "性别" },
{ "TranscriptsEn.ChineseScores", "语文成绩" },
{ "TranscriptsEn.MathScores", "数学成绩" },
};
// 1.2解析文件,存放到一个List集合里
List<UserEntity> enlist = ExcelHelper.ExcelToEntityList<UserEntity>(cellheader, filePath, out errorMsg);
#endregion
#region 2.对List集合进行有效性校验
#region 2.1检测必填项是否必填
for (int i = 0; i < enlist.Count; i++)
{
UserEntity en = enlist[i];
string errorMsgStr = "第" + (i + 1) + "行数据检测异常:";
bool isHaveNoInputValue = false; // 是否含有未输入项
if (string.IsNullOrEmpty(en.Name))
{
errorMsgStr += "姓名列不能为空;";
isHaveNoInputValue = true;
}
if (isHaveNoInputValue) // 若必填项有值未填
{
en.IsExcelVaildateOK = false;
errorMsg.AppendLine(errorMsgStr);
}
}
#endregion
#region 2.2检测Excel中是否有重复对象
for (int i = 0; i < enlist.Count; i++)
{
UserEntity enA = enlist[i];
if (enA.IsExcelVaildateOK == false) // 上面验证不通过,不进行此步验证
{
continue;
}
for (int j = i + 1; j < enlist.Count; j++)
{
UserEntity enB = enlist[j];
// 判断必填列是否全部重复
if (enA.Name == enB.Name)
{
enA.IsExcelVaildateOK = false;
enB.IsExcelVaildateOK = false;
errorMsg.AppendLine("第" + (i + 1) + "行与第" + (j + 1) + "行的必填列重复了");
}
}
}
#endregion
// TODO:其他检测
#endregion
// 3.TODO:对List集合持久化存储操作。如:存储到数据库
// 4.返回操作结果
bool isSuccess = false;
if (errorMsg.Length == 0)
{
isSuccess = true; // 若错误信息成都为空,表示无错误信息
}
var rs = new { success = isSuccess, msg = errorMsg.ToString(), data = enlist };
System.Web.Script.Serialization.JavaScriptSerializer js = new System.Web.Script.Serialization.JavaScriptSerializer();
context.Response.ContentType = "text/plain";
context.Response.Write(js.Serialize(rs)); // 返回Json格式的内容
}
catch (Exception ex)
{
throw ex;
}
}










