zoukankan      html  css  js  c++  java
  • Read data from excel into the object of DataSet.

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Excel;
    using System.IO;
    using System.Data;

    namespace ReadExcelData
    {
    class Program
    {
    static void Main(string[] args)
    {
    string filePath = @"E:\WorkDocuments\TestD\Book1.xlsx";
    ReadDataFromExcel(filePath);
    }

    public static void ReadDataFromExcel(string filePath)
    {
    FileStream stream = new FileStream(filePath, FileMode.Open);

    IExcelDataReader excelReader2007 = ExcelReaderFactory.CreateOpenXmlReader(stream);

    DataSet result = excelReader2007.AsDataSet();

    // Data Reader methods
    foreach (DataTable table in result.Tables)
    {
    for (int i = 0; i < table.Rows.Count; i++ )
    {
    for (int j = 0; j < table.Columns.Count; j++ )
    {
    Console.Write("\"" + table.Rows[i].ItemArray[j] + "\";");

    }
    Console.WriteLine();
    }
    }
    excelReader2007.Close();
    Console.Read();

    }
    }
    }

  • 相关阅读:
    Slimer软工课设日报-2016年6月30日
    Slimer软工课设日报-2016年6月29日
    软件工程个人总结
    什么是Bug
    构建之法读后感----第1章 绪论
    7.4
    7.1-7.3
    6.29
    软件工程课设 第二天
    软工总结 作业
  • 原文地址:https://www.cnblogs.com/tianjinquan/p/2210090.html
Copyright © 2011-2022 走看看