程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#導入導出Excel數據的兩種方法

C#導入導出Excel數據的兩種方法

編輯:C#入門知識

C#導入導出Excel數據的兩種方法。本站提示廣大學習愛好者:(C#導入導出Excel數據的兩種方法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#導入導出Excel數據的兩種方法正文


本文為大家分享了C#導入導出Excel數據的具體代碼,供大家參考,具體內容如下

注:對於實體類對象最好新建一個並且繼承原有實體類,這樣可以將類型進行修改;

方法一:此種方法是用EPPLUS中的FileInfo流進行讀取的(是不是流我還真不太了解,若有懂得請留言,非常感謝了)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Abp.Extensions;

namespace HYZT.Ltxy.International.Ctrip.Exporting
{
 public class ExcelLib
 {
  public ICtripPolicyExcelImport GetExcel(string filePath)
  {
   if (filePath.Trim() .IsNullOrEmpty())
    throw new Exception("文件名不能為空");
 //因為這兒用得是EPPLUS對Excel進行的操作,所以只能操作
 //2007以後的版本以後的(即擴展名為.xlsx)
   if (!filePath.Trim().EndsWith("xlsx"))
    throw new Exception("請使用office Excel 2007版本或2010版本");

   else if (filePath.Trim().EndsWith("xlsx"))
   {
    ICtripPolicyExcelImport res = new CtripPolicyExcelImport(filePath.Trim());
    return res;
   }
   else return null;
  }
 }
}

方法接口:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HYZT.Ltxy.International.Ctrip.Exporting
{
 public interface ICtripPolicyExcelImport
 {
  /// <summary> 打開文件 </summary> 
  bool Open(); 
  //ExcelVersion Version { get; }
  /// <summary> 文件路徑 </summary> 
  string FilePath { get; set; }
  /// <summary> 文件是否已經打開 </summary> 
  bool IfOpen { get; }
  /// <summary> 文件包含工作表的數量 </summary> 
  int SheetCount { get; }
  /// <summary> 當前工作表序號 </summary> 
  int CurrentSheetIndex { get; set; }
  /// <summary> 獲取當前工作表中行數 </summary> 
  int GetRowCount();
  /// <summary> 獲取當前工作表中列數 </summary> 
  int GetColumnCount();
  /// <summary> 獲取當前工作表中某一行中單元格的數量 </summary> 
  /// <param name="Row">行序號</param> 
  int GetCellCountInRow(int Row);
  /// <summary> 獲取當前工作表中某一單元格的值(按字符串返回) </summary> 
  /// <param name="Row">行序號</param> 
  /// <param name="Col">列序號</param> 
  string GetCellValue(int Row, int Col);
  /// <summary> 關閉文件 </summary> 
  void Close(); 
 }
}

方法實現:

using OfficeOpenXml;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HYZT.Ltxy.International.Ctrip.Exporting
{
 public class CtripPolicyExcelImport:ICtripPolicyExcelImport
 {

  public CtripPolicyExcelImport() 
  { } 
 
  public CtripPolicyExcelImport(string path) 
  { filePath = path; }


  private string filePath = "";
  private ExcelWorkbook book = null;
  private int sheetCount = 0;
  private bool ifOpen = false;
  private int currentSheetIndex = 0;
  private ExcelWorksheet currentSheet = null;
  private ExcelPackage ep = null; 
 
   public bool Open() 
  { 
   try 
   { 
    ep = new ExcelPackage(new FileInfo(filePath)); 
     
    if (ep == null) return false; 
    book =ep.Workbook; 
    sheetCount = book.Worksheets.Count; 
    currentSheetIndex = 0; 
    currentSheet = book.Worksheets[1]; 
    ifOpen = true; 
   } 
   catch (Exception ex) 
   { 
    throw new Exception(ex.Message); 
   } 
   return true; 
  } 
 
  public void Close() 
  { 
   if (!ifOpen || ep == null) return; 
   ep.Dispose(); 
  } 
 
  //public ExcelVersion Version 
  //{ get { return ExcelVersion.Excel07; } } 
 
  public string FilePath 
  { 
   get { return filePath; } 
   set { filePath = value; } 
  } 
 
  public bool IfOpen 
  { get { return ifOpen; } } 
 
  public int SheetCount 
  { get { return sheetCount; } } 
 
  public int CurrentSheetIndex 
  { 
   get { return currentSheetIndex; } 
   set 
   { 
    if (value != currentSheetIndex) 
    { 
     if (value >= sheetCount) 
      throw new Exception("工作表序號超出范圍"); 
     currentSheetIndex = value; 
     currentSheet =book.Worksheets[currentSheetIndex+1]; 
    } 
   } 
  } 
 
  public int GetRowCount() 
  { 
   if (currentSheet == null) return 0; 
   return currentSheet.Dimension.End.Row; 
  } 
 
  public int GetColumnCount() 
  { 
   if (currentSheet == null) return 0; 
   return currentSheet.Dimension.End.Column; 
  } 
 
  public int GetCellCountInRow(int Row) 
  { 
   if (currentSheet == null) return 0; 
   if (Row >= currentSheet.Dimension.End.Row) return 0; 
   return currentSheet.Dimension.End.Column; 
  } 
 //根據行號和列號獲取指定單元格的數據
  public string GetCellValue(int Row, int Col) 
  { 
   if (currentSheet == null) return ""; 
   if (Row >= currentSheet.Dimension.End.Row || Col >= currentSheet.Dimension.End.Column) return ""; 
   object tmpO =currentSheet.GetValue(Row+1, Col+1); 
   if (tmpO == null) return ""; 
   return tmpO.ToString(); 
  }   
 }   
}

方法調用實現功能:

//用於程序是在本地,所以此時的路徑是本地電腦的絕對路勁;
//當程序發布後此路徑應該是服務器上的絕對路徑,所以在此之前還要有
//一項功能是將本地文件上傳到服務器上的指定位置,此時在獲取路徑即可
 public string GetExcelToCtripPolicy(string filePath)
  {
   ExcelLib lib = new ExcelLib();
   if (filePath == null)
    return new ReturnResult<bool>(false, "未找到相應文件");
   string str= tmp.GetCellValue(i, j); 
   return str;
  }
 

方法二:將Excel表格轉化成DataTable表,然後在對DataTable進行業務操作

using Abp.Application.Services;
using OfficeOpenXml;
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HYZT.Ltxy.International.Ctrip.GetExcelToDataTable
{
 public class EPPlusHelperAppService:ApplicationService,IEPPlusHelperAppService
 {
  private static string GetString(object obj)
  {
   try
   {
    return obj.ToString();
   }
   catch (Exception ex)
   {
    return "";
   }
  }

  /// <summary>
  ///將指定的Excel的文件轉換成DataTable (Excel的第一個sheet)
  /// </summary>
  /// <param name="fullFielPath">文件的絕對路徑</param>
  /// <returns></returns>
  public DataTable WorksheetToTable(string filePath)
  {
   try
   {
    FileInfo existingFile = new FileInfo(filePath);

    ExcelPackage package = new ExcelPackage(existingFile);
    ExcelWorksheet worksheet = package.Workbook.Worksheets[1];//選定 指定頁

    return WorksheetToTable(worksheet);
   }
   catch (Exception)
   {
    throw;
   }
  }

  /// <summary>
  /// 將worksheet轉成datatable
  /// </summary>
  /// <param name="worksheet">待處理的worksheet</param>
  /// <returns>返回處理後的datatable</returns>
  public static DataTable WorksheetToTable(ExcelWorksheet worksheet)
  {
   //獲取worksheet的行數
   int rows = worksheet.Dimension.End.Row;
   //獲取worksheet的列數
   int cols = worksheet.Dimension.End.Column;

   DataTable dt = new DataTable(worksheet.Name);
   DataRow dr = null;
   for (int i = 1; i <= rows; i++)
   {
    if (i > 1)
     dr = dt.Rows.Add();

    for (int j = 1; j <= cols; j++)
    {
     //默認將第一行設置為datatable的標題
     if (i == 1)
      dt.Columns.Add(GetString(worksheet.Cells[i, j].Value));
     //剩下的寫入datatable
     else
      dr[j - 1] = GetString(worksheet.Cells[i, j].Value);
    }
   }
   return dt;
  }
 }
}

之前我有一個程序用的是方法一進行Excel導入的,速度不是很快,後來我又用了第二種方法但是速度更慢了,到底這兩種方法哪種快,請指導,還是我用第二種方法的時候業務判斷有問題,不得而知,就請明白人指導我到底這兩種方法哪種比較好些。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved