国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

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

2020-01-24 00:43:15
字體:
來源:轉載
供稿:網友

本文為大家分享了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導入的,速度不是很快,后來我又用了第二種方法但是速度更慢了,到底這兩種方法哪種快,請指導,還是我用第二種方法的時候業務判斷有問題,不得而知,就請明白人指導我到底這兩種方法哪種比較好些。

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 廊坊市| 本溪市| 天水市| 吉隆县| 柘城县| 吉隆县| 长沙市| 长治县| 峨边| 湛江市| 辉南县| 自贡市| 陈巴尔虎旗| 南阳市| 响水县| 萨嘎县| 茌平县| 四川省| 民县| 葫芦岛市| 新田县| 井冈山市| 南漳县| 宝兴县| 额济纳旗| 祁连县| 永川市| 额尔古纳市| 安宁市| 台东县| 东台市| 利辛县| 平原县| 南乐县| 栾川县| 哈尔滨市| 那坡县| 明光市| 洛川县| 桂平市| 延边|