0

嗨,我已将文件上传到一台 amazon 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
    }
4

2 回答 2

0

你需要两件事:

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

在此示例中:

  • 我使用必须安装在服务器上的ACE(Microsoft Access 数据库引擎)驱动程序
  • 文件在App_Data文件夹中(在你的情况下,文件应该是 CommonBLL 库,我想)
  • 查询是UPDATE查询;您可以使用常见的 DB Snippets 替换为SELECTorINSERT查询。

    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();
        }
    
于 2012-07-23T09:41:35.500 回答
0

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

于 2012-07-23T09:47:31.793 回答