服务器之家

服务器之家 > 正文

C# Winform实现导入和导出Excel文件

时间:2022-03-06 13:45     来源/作者:北辰之北灬

本文实例为大家分享了Winform实现导入导出Excel文件的具体代码,供大家参考,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/// <summary>
    /// 导出Excel文件
    /// </summary>
    /// /// <param name="dataSet"></param>
    /// <param name="dataTable">数据集</param>
    /// <param name="isShowExcle">导出后是否打开文件</param>
    /// <returns></returns>
    public static bool DataTableToExcel(string filePath, System.Data.DataTable dataTable, bool isShowExcle)
    {
      //System.Data.DataTable dataTable = dataSet.Tables[0];
      int rowNumber = dataTable.Rows.Count;
      int columnNumber = dataTable.Columns.Count;
      int colIndex = 0;
 
      if (rowNumber == 0)
      {
        return false;
      }
 
      Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();
      Microsoft.Office.Interop.Excel.Workbook workbook = excel.Workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);
      Microsoft.Office.Interop.Excel.Worksheet worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1];
      excel.Visible = isShowExcle;
      Microsoft.Office.Interop.Excel.Range range;
 
 
      foreach (DataColumn col in dataTable.Columns)
      {
        colIndex++;
        excel.Cells[1, colIndex] = col.ColumnName;
      }
 
      object[,] objData = new object[rowNumber, columnNumber];
 
      for (int r = 0; r < rowNumber; r++)
      {
        for (int c = 0; c < columnNumber; c++)
        {
          objData[r, c] =dataTable.Rows[r][c];
        }
      }
 
      range = worksheet.get_Range(excel.Cells[2, 1], excel.Cells[rowNumber + 1, columnNumber]);
 
      range.Value2 = objData;
 
      range.NumberFormatLocal = "@";
 
      worksheet.SaveAs(filePath, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
 
      //excel.Quit();
      return true;
    }

读取Excel文件数据到DataTable

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/// <summary>
   /// 读取Excel文件数据到DataTable
   /// </summary>
   /// <param name="filePath">Excel文件路径</param>
   private void Import_Excel(string filePath)
   {
     string sqlconn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filePath + ";Extended Properties='Excel 8.0;HDR=False;IMEX=1'";
 
     string sql = @"select * from [Sheet1$]";
 
     try
     {
       using (OleDbConnection conn = new OleDbConnection(sqlconn))
       {
         using (OleDbDataAdapter adapter = new OleDbDataAdapter(sql, conn))
         {
           System.Data.DataTable dt = new System.Data.DataTable();
           adapter.Fill(dt);
 
           this.LoadDataGridView(dt);
         }
       }
     }
     catch (Exception ex)
     {
       MessageBox.Show("打开文件出错,错误信息:" + ex.Message.ToString(), "提示");
     }
   }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/pp_fzp/article/details/51502233

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部