C#의 다양한 내보내기 방법 소개

黄舟
풀어 주다: 2017-05-21 10:54:12
원래의
1649명이 탐색했습니다.

이 글은 C#의 다양한 내보내기 방법에 대한 관련 지식을 주로 소개하고 있어 참고할만한 가치가 매우 높습니다. 아래 편집기로 살펴보겠습니다

첫 번째 방법: Microsoft.Office.Interop.Excel.dll

사용 먼저 Office Excel을 설치한 다음 Microsoft.Office.Interop.Excel.dll 구성 요소를 찾아 참조에 추가하세요.


rree

첫 번째 방법의 성능은 정말 형편없고 한계가 너무 많습니다. 먼저 Office를 설치해야 하며(컴퓨터에 없는 경우), 내보낼 때 파일을 저장할 경로를 지정해야 합니다. 물론, 작성된 데이터가 저장되어 있는 경우 다운로드를 위해 브라우저로 출력할 수도 있습니다.

두 번째 방법: Aspose.Cells.dll 사용

이 Aspose.Cells는 Aspose 회사에서 Excel을 내보내기 위해 출시되었습니다 control 은 Office나 상용 소프트웨어에 의존하지 않으며 무료입니다.


public void ExportExcel(DataTable dt)
    {
      if (dt != null)
      {
        Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();

        if (excel == null)
        {
          return;
        }

        //设置为不可见,操作在后台执行,为 true 的话会打开 Excel
        excel.Visible = false;

        //打开时设置为全屏显式
        //excel.DisplayFullScreen = true;

        //初始化工作簿
        Microsoft.Office.Interop.Excel.Workbooks workbooks = excel.Workbooks;

        //新增加一个工作簿,Add()方法也可以直接传入参数 true
        Microsoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);
        //同样是新增一个工作簿,但是会弹出保存对话框
        //Microsoft.Office.Interop.Excel.Workbook workbook = excel.Application.Workbooks.Add(true);

        //新增加一个 Excel 表(sheet)
        Microsoft.Office.Interop.Excel.Worksheet worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1];

        //设置表的名称
        worksheet.Name = dt.TableName;
        try
        {
          //创建一个单元格
          Microsoft.Office.Interop.Excel.Range range;

          int rowIndex = 1;    //行的起始下标为 1
          int colIndex = 1;    //列的起始下标为 1

          //设置列名
          for (int i = 0; i < dt.Columns.Count; i++)
          {
            //设置第一行,即列名
            worksheet.Cells[rowIndex, colIndex + i] = dt.Columns[i].ColumnName;

            //获取第一行的每个单元格
            range = worksheet.Cells[rowIndex, colIndex + i];

            //设置单元格的内部颜色
            range.Interior.ColorIndex = 33;

            //字体加粗
            range.Font.Bold = true;

            //设置为黑色
            range.Font.Color = 0;

            //设置为宋体
            range.Font.Name = "Arial";

            //设置字体大小
            range.Font.Size = 12;

            //水平居中
            range.HorizontalAlignment = Microsoft.Office.Interop.Excel.XlHAlign.xlHAlignCenter;

            //垂直居中
            range.VerticalAlignment = Microsoft.Office.Interop.Excel.XlVAlign.xlVAlignCenter;
          }

          //跳过第一行,第一行写入了列名
          rowIndex++;

          //写入数据
          for (int i = 0; i < dt.Rows.Count; i++)
          {
            for (int j = 0; j < dt.Columns.Count; j++)
            {
              worksheet.Cells[rowIndex + i, colIndex + j] = dt.Rows[i][j].ToString();
            }
          }

          //设置所有列宽为自动列宽
          //worksheet.Columns.AutoFit();

          //设置所有单元格列宽为自动列宽
          worksheet.Cells.Columns.AutoFit();
          //worksheet.Cells.EntireColumn.AutoFit();

          //是否提示,如果想删除某个sheet页,首先要将此项设为fasle。
          excel.DisplayAlerts = false;

          //保存写入的数据,这里还没有保存到磁盘
          workbook.Saved = true;

          //设置导出文件路径
          string path = HttpContext.Current.Server.MapPath("Export/");

          //设置新建文件路径及名称
          string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";

          //创建文件
          FileStream file = new FileStream(savePath, FileMode.CreateNew);

          //关闭释放流,不然没办法写入数据
          file.Close();
          file.Dispose();

          //保存到指定的路径
          workbook.SaveCopyAs(savePath);

          //还可以加入以下方法输出到浏览器下载
          FileInfo fileInfo = new FileInfo(savePath);
          OutputClient(fileInfo);
        }
        catch(Exception ex)
        {

        }
        finally
        {
          workbook.Close(false, Type.Missing, Type.Missing);
          workbooks.Close();

          //关闭退出
          excel.Quit();

          //释放 COM 对象
          Marshal.ReleaseComObject(worksheet);
          Marshal.ReleaseComObject(workbook);
          Marshal.ReleaseComObject(workbooks);
          Marshal.ReleaseComObject(excel);

          worksheet = null;
          workbook = null;
          workbooks = null;
          excel = null;
          GC.Collect();
        }
      }
    }

public void OutputClient(FileInfo file)
    {
      HttpContext.Current.Response.Buffer = true;

      HttpContext.Current.Response.Clear();
      HttpContext.Current.Response.ClearHeaders();
      HttpContext.Current.Response.ClearContent();

      HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";

      //导出到 .xlsx 格式不能用时,可以试试这个
      //HttpContext.Current.Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";

      HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xlsx", DateTime.Now.ToString("yyyy-MM-dd-HH-mm")));

      HttpContext.Current.Response.Charset = "GB2312";
      HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding("GB2312");

      HttpContext.Current.Response.AddHeader("Content-Length", file.Length.ToString());

      HttpContext.Current.Response.WriteFile(file.FullName);
      HttpContext.Current.Response.Flush();
      HttpContext.Current.Response.Close();
    }
로그인 후 복사

두 번째 방법은 성능이 좋고 조작도 복잡하지 않습니다. 내보낼 때 파일을 저장할 경로를 설정할 수 있고, 스트림으로 저장할 수도 있습니다. 다운로드를 위해 브라우저로 출력합니다.

세 번째 옵션: Microsoft.Jet.OLEDB

이 Excel 작업 방법은 데이터베이스 작업과 유사합니다. 먼저 연결을 소개하겠습니다String:


public void ExportExcel(DataTable dt)
    {
      try
      {
        //获取指定虚拟路径的物理路径
        string path = HttpContext.Current.Server.MapPath("DLL/") + "License.lic";

        //读取 License 文件
        Stream stream = (Stream)File.OpenRead(path);

        //注册 License
        Aspose.Cells.License li = new Aspose.Cells.License();
        li.SetLicense(stream);

        //创建一个工作簿
        Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook();

        //创建一个 sheet 表
        Aspose.Cells.Worksheet worksheet = workbook.Worksheets[0];

        //设置 sheet 表名称
        worksheet.Name = dt.TableName;

        Aspose.Cells.Cell cell;

        int rowIndex = 0;  //行的起始下标为 0
        int colIndex = 0;  //列的起始下标为 0

        //设置列名
        for (int i = 0; i < dt.Columns.Count; i++)
        {
          //获取第一行的每个单元格
          cell = worksheet.Cells[rowIndex, colIndex + i];

          //设置列名
          cell.PutValue(dt.Columns[i].ColumnName);

          //设置字体
          cell.Style.Font.Name = "Arial";

          //设置字体加粗
          cell.Style.Font.IsBold = true;

          //设置字体大小
          cell.Style.Font.Size = 12;

          //设置字体颜色
          cell.Style.Font.Color = System.Drawing.Color.Black;

          //设置背景色
          cell.Style.BackgroundColor = System.Drawing.Color.LightGreen;
        }

        //跳过第一行,第一行写入了列名
        rowIndex++;

        //写入数据
        for (int i = 0; i < dt.Rows.Count; i++)
        {
          for (int j = 0; j < dt.Columns.Count; j++)
          {
            cell = worksheet.Cells[rowIndex + i, colIndex + j];

            cell.PutValue(dt.Rows[i][j]);
          }
        }

        //自动列宽
        worksheet.AutoFitColumns();

        //设置导出文件路径
        path = HttpContext.Current.Server.MapPath("Export/");

        //设置新建文件路径及名称
        string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";

        //创建文件
        FileStream file = new FileStream(savePath, FileMode.CreateNew);

        //关闭释放流,不然没办法写入数据
        file.Close();
        file.Dispose();

        //保存至指定路径
        workbook.Save(savePath);

        //或者使用下面的方法,输出到浏览器下载。
        //byte[] bytes = workbook.SaveToStream().ToArray();
        //OutputClient(bytes);

        worksheet = null;
        workbook = null;
      }
      catch(Exception ex)
      {
      }
    }
public void OutputClient(byte[] bytes)
    {
      HttpContext.Current.Response.Buffer = true;

      HttpContext.Current.Response.Clear();
      HttpContext.Current.Response.ClearHeaders();
      HttpContext.Current.Response.ClearContent();

      HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
      HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", DateTime.Now.ToString("yyyy-MM-dd-HH-mm")));

      HttpContext.Current.Response.Charset = "GB2312";
      HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding("GB2312");

      HttpContext.Current.Response.BinaryWrite(bytes);
      HttpContext.Current.Response.Flush();
      HttpContext.Current.Response.Close();
    }
로그인 후 복사

Provider:Driver 프로그램 이름

데이터 소스: Excel 파일 경로 지정

확장 속성: Excel 8.0은 Excel 2000 이상용이고 Excel 12.0은 Excel 2007 이상용입니다.

HDR: 예는 첫 번째 행에 열 이름이 포함되어 있으며 행 수를 계산할 때 첫 번째 행이 포함되지 않음을 의미합니다. NO는 완전히 반대입니다.

IMEX: 0 쓰기 모드, 2 읽기 및 쓰기 모드. 오류가 " sheet1 테이블의 디자인을 수정할 수 없습니다. 읽기 전용 데이터베이스에 있습니다."인 경우 이를 제거하면 문제가 해결됩니다.

위 내용은 C#의 다양한 내보내기 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!