欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#实现文件上传下载Excel文档示例代码

程序员文章站 2023-12-09 17:34:15
要求 环境信息:win2008server  开发工具:vs2015 开发语言:c# 要求:   1.点击同步数据后接口获取数据展示页面同时过滤无...

要求

环境信息:win2008server  开发工具:vs2015 开发语言:c#

要求:

  1.点击同步数据后接口获取数据展示页面同时过滤无效数据并写入数据库,数据可导出excel并支持分类导出

  2.excel导入确认数据,调用服务处理数据后写入数据库,并支持分类导出

这两天搞了一个小功能,其他的不说了针对excel导入导出做一个小总结

导出文件

这里的文件导出是底层写好的,个人理解有限而且毕竟属于公司就不贴具体代码了,简单说一下思路

首先是建立导出excel管理类,用于管理excel文件导出的模板 样式 每行的计算方式等等,当然需要在项目中添加该管理类的配置文件去匹配对应模板;

1.读取对应配置文件,获取配置文件模板信息 至于模板如何配置就不说啦xml文件操作园子里面很多篇关于这个文章

C#实现文件上传下载Excel文档示例代码

2.根据xml文件定义模板id遍历查询到该模板,这里有缓存机制为了可能处于两方面考虑,1,防止频繁读取遍历文件从而减少性能缺失 2.弱误删配置文件程序不会立即停止工作,监控警报会首先暴露这个问题

C#实现文件上传下载Excel文档示例代码

3.最后就是读取指定id下面的具体导出设置,比如标题头,上限行数,给定简单默认值等等细节处理,同时也含有缓存机制

C#实现文件上传下载Excel文档示例代码

配置文件模板管理大致上有以上几种功能,下面就是具体数据库导出,还是那样不能提供具体代码但是思路可以说一说

导出管理类需要承接很多任务,入数据库查询,数据过滤,导出格式控制,导出日志设置,导出预警等等

C#实现文件上传下载Excel文档示例代码

其实这并不是一个简单的excel导出工具而是一个小型的导出平台,承接一个导出实体去设置导出的各项数据,但是还是需要开发者根据自己的需求去填写相应的模板,导出格式,数据验证,数据查询方式实体承接了导出方式

(xls或者csv等等很多格式)使用者只需要写入具体导出db信息,以及导出表名称和配置文件以及数据验证就可以轻松使用它完成数据导出操作

C#实现文件上传下载Excel文档示例代码

并且,针对文件导出操作尤其是数据库最好由底层实现通过response流发送到页面执行下载,数据相对规整一些如果在页面直接执行导出页面有些太沉重了 毕竟这个是可以实现的

导入文件

 导入文件首先需要上传,文件上传至服务器指定地址之后再去针对服务器文件解析,其实原理很简单,就是通过解析上传的文件通过oldb方式获取解析后的文件dataset然后在写入数据库,下面是一个上传文件格式验证

C#实现文件上传下载Excel文档示例代码

具体的读取方法就很简单了 网上一搜一大把,不过要区分一下版本而且不同版本的excel文件行数上线不同下面贴一个我常用的excel到dataset方法

public static returnvalue readexceltodataset(string xlsfullfilename, bool ishdr, bool isimex, int limitsheetcount, bool isonlyverify)
{
 returnvalue returnvalue = new returnvalue();
 string fileext = uploadfileutils.getfileext(xlsfullfilename);
 if (string.isnullorempty(fileext) || !stringutils.isinlimitstr("xls,xlsx", fileext))
 {
  returnvalue.haserror = true;
  returnvalue.returncode = 1;
  returnvalue.message = "无效excel文件后缀";
  return returnvalue;
 }
 if (!file.exists(xlsfullfilename))
 {
  returnvalue.haserror = true;
  returnvalue.returncode = 2;
  returnvalue.message = "文件不存在";
  return returnvalue;
 }
 stringbuilder stringbuilder = new stringbuilder();
 string str;
 if ("xlsx".equals(fileext, stringcomparison.currentcultureignorecase))
 {
  stringbuilder.append("provider=microsoft.ace.oledb.12.0");
  str = "excel 12.0;";
 }
 else
 {
  stringbuilder.append("provider=microsoft.jet.oledb.4.0");
  str = "excel 8.0;";
 }
 stringbuilder.append(";data source=" + xlsfullfilename);
 stringbuilder.append(";extended properties=\"" + str);
 if (ishdr)
 {
  stringbuilder.append(";hdr=yes");
 }
 if (isimex)
 {
  stringbuilder.append(";imex=1");
 }
 stringbuilder.append("\"");
 excelutils.log.debug(stringbuilder.tostring());
 oledbconnection oledbconnection = new oledbconnection(stringbuilder.tostring());
 try
 {
  oledbconnection.open();
  datatable oledbschematable = oledbconnection.getoledbschematable(oledbschemaguid.tables, new object[]
  {
   null,
   null,
   null,
   "table"
  });
  if (oledbschematable == null || oledbschematable.rows.count == 0)
  {
   returnvalue.haserror = true;
   returnvalue.returncode = 3;
   returnvalue.message = "读取不到sheet的信息";
   returnvalue result = returnvalue;
   return result;
  }
  if (isonlyverify)
  {
   returnvalue.haserror = false;
   returnvalue.message = "读取sheet信息正确";
   returnvalue.putvalue("dtsheet", oledbschematable);
   returnvalue result = returnvalue;
   return result;
  }
  int num = oledbschematable.rows.count;
  if (limitsheetcount > 0 && limitsheetcount < oledbschematable.rows.count)
  {
   num = limitsheetcount;
  }
  string[] array = new string[num];
  for (int i = 0; i < num; i++)
  {
   array[i] = oledbschematable.rows[i]["table_name"].tostring();
  }
  dataset dataset = new dataset();
  for (int j = 0; j < num; j++)
  {
   string text = "select * from [" + array[j] + "]";
   excelutils.log.debug(text);
   oledbcommand selectcommand = new oledbcommand(text, oledbconnection);
   oledbdataadapter oledbdataadapter = new oledbdataadapter(selectcommand);
   datatable datatable = new datatable(array[j]);
   oledbdataadapter.fill(datatable);
   dataset.tables.add(datatable);
  }
  returnvalue.haserror = false;
  returnvalue.putvalue("dtsheet", oledbschematable);
  returnvalue.putvalue("arrtablename", array);
  returnvalue.returnobject = dataset;
  returnvalue.message = "读取成功";
 }
 catch (exception ex)
 {
  returnvalue.haserror = true;
  returnvalue.returncode = -100;
  returnvalue.returnexception = ex;
  returnvalue.message = ex.message;
  excelutils.log.warnformat("readexceltodataset sbconn={0} 出错,原因:{1}", stringbuilder.tostring(), ex.message);
 }
 finally
 {
  oledbconnection.close();
 }
 return returnvalue;
}

哦对 注意一下,如果用导出方法导出xls文件再用导入方法导入该文件会报错的哟,我是默认保存.csv 实际就为了确定文件是否被使用过,所以当你的excel文件能导出单相同文件却导入不了 请尝试一下重新保存一下.xls格式 在进行导入