如何从ASHX页面阅读excel文件?

时间:2012-07-23 08:34:25

标签: javascript asp.net filehandler

您好我已将文件上传到一台亚马逊s3服务器,如何阅读excel文件并希望将Excel数据发送到数据库。 我的代码是

<script type="text/javascript">
         var obj = null;
         $(function () {
             $('#fileupload').fileupload({
                 replaceFileInput: false,
                 formData: function (form) {
                     return [{ name: "name1", value: "value1" }, { name: "name2", value: "value2"}];
             $('#btnGo').click(function () {
                 obj.submit();
             });
         });
     </script>

我的ashx页面,我需要阅读excel数据

public class AjaxFileHandler : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            var file = context.Request.Files[0];
            string fileName=fileName = Guid.NewGuid().ToString() + file.FileName;
            Stream streamContentFile = context.Request.Files[0].InputStream;

            var iFileSize = context.Request.Files[0].ContentLength;
            byte[] data = new byte[iFileSize];
            int bytes_read = 0;
            while (bytes_read < iFileSize)
            {
                int bytes_read_this_iteration = streamContentFile.Read(data, bytes_read, iFileSize - bytes_read);
            streamContentFile.Close();
            streamContentFile.Dispose();
            CommonBLL.UploadTemporaryFilesToS3Bucket(fileName, data);
//Here i need to read excel code can you provide how to do that pleas
    }

2 个答案:

答案 0 :(得分:0)

你需要两件事:

  • 允许代码读取Excel内容的驱动程序
  • 访问此文件
  • 查询 over excel data

在此示例中:

  • 我使用必须安装在服务器上的ACE (Microsoft Access Database Engine)驱动程序
  • 该文件位于App_Data文件夹中(在您的情况下,该文件应该是rax CommonBLL库,我猜)
  • 查询是UPDATE查询;您可以使用常见的数据库SNippets替换为SELECTINSERT查询。

    string fileName= Server.MapPath( "~/App_Data/MyFile.xls");
    string sheetName= "Sheet1";
    string connString = string.Format(
          "Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties='Excel 8.0;HDR=No'"
          , fileName);
    string command = string.Format("UPDATE [{0}${1}:{1}] SET F1='{2}'", sheetName,cellName, cellValue);
    
       using (OleDbConnection oledbConn = new OleDbConnection(connString))
        {
            oledbConn.Open();
            using (OleDbCommand cmd = new OleDbCommand(command, oledbConn))
                cmd.ExecuteNonQuery();
    
            oledbConn.Close();
        }
    

答案 1 :(得分:0)

我会使用excel的开源库,EPPlus(xslx)或NPOI(xls)。它们非常易于使用,而且我正在使用EPPlus进行大量的excel导入/导出,并且它运行良好。这些库没有外部依赖性,您可以在服务器端使用它。