C#读取excel等表格常用方法

0. 利用NPOI。 请查阅此插件的相关文档。

1.方法一:采用OleDB读取EXCEL文件: 把EXCEL文件当做一个数据源来进行数据的读取操作,实例如下:


1

2

3

4

5

6

7

8

9

10

11

12

13

14

public DataSet ExcelToDS(string Path)

{

string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" +"Data Source="+ Path +";"+"Extended Properties=Excel 8.0;";

OleDbConnection conn = new OleDbConnection(strConn);

conn.Open();  

string strExcel = "";   

OleDbDataAdapter myCommand = null;

DataSet ds = null;

strExcel="select * from [sheet1$]";

myCommand = new OleDbDataAdapter(strExcel, strConn);

ds = new DataSet();

myCommand.Fill(ds,"table1");   

return ds;

}

对于EXCEL中的表即sheet([sheet1$])如果不是固定的可以使用下面的方法得到


1

2

3

4

string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" +"Data Source="+ Path +";"+"Extended Properties=Excel 8.0;";

OleDbConnection conn = new OleDbConnection(strConn);

DataTable schemaTable = objConn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables,null);

string tableName=schemaTable.Rows[0][2].ToString().Trim();  

另外:也可进行写入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

public void DSToExcel(string Path,DataSet oldds)

{

//先得到汇总EXCEL的DataSet 主要目的是获得EXCEL在DataSet中的结构

string strCon = " Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source ="+path1+";Extended Properties=Excel 8.0" ;

OleDbConnection myConn = new OleDbConnection(strCon) ;

string strCom="select * from [Sheet1$]";

myConn.Open ( ) ;

OleDbDataAdapter myCommand = new OleDbDataAdapter ( strCom, myConn ) ;

ystem.Data.OleDb.OleDbCommandBuilder builder=new OleDbCommandBuilder(myCommand);

//QuotePrefix和QuoteSuffix主要是对builder生成InsertComment命令时使用。

builder.QuotePrefix="[";     //获取insert语句中保留字符(起始位置)

builder.QuoteSuffix="]"; //获取insert语句中保留字符(结束位置)

DataSet newds=new DataSet();

myCommand.Fill(newds ,"Table1") ;

for(int i=0;i<oldds.Tables[0].Rows.Count;i++)

{

//在这里不能使用ImportRow方法将一行导入到news中,因为ImportRow将保留原来DataRow的所有设置(DataRowState状态不变)。

   在使用ImportRow后newds内有值,但不能更新到Excel中因为所有导入行的DataRowState!=Added

DataRow nrow=aDataSet.Tables["Table1"].NewRow();

for(int j=0;j<newds.Tables[0].Columns.Count;j++)

{

   nrow[j]=oldds.Tables[0].Rows[i][j];

}

newds.Tables["Table1"].Rows.Add(nrow);

}

myCommand.Update(newds,"Table1");

myConn.Close();

}

2.方法二:引用的com组件:Microsoft.Office.Interop.Excel.dll   读取EXCEL文件 首先是Excel.dll的获取,将Office安装目录下的Excel.exe文件Copy到DotNet的bin目录下,cmd到该目录下,运行 TlbImp EXCEL.EXE Excel.dll 得到Dll文件。 再在项目中添加引用该dll文件.


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

//读取EXCEL的方法   (用范围区域读取数据)

private void OpenExcel(string strFileName)

{

    object missing = System.Reflection.Missing.Value;

    Application excel = new Application();//lauch excel application

    if (excel == null)

    {

        Response.Write("<script>alert(‘Can‘t access excel‘)</script>");

    }

    else

    {

        excel.Visible = false; excel.UserControl = true;

        // 以只读的形式打开EXCEL文件

        Workbook wb = excel.Application.Workbooks.Open(strFileName, missing, true, missing, missing, missing,

         missing, missing, missing, true, missing, missing, missing, missing, missing);

        //取得第一个工作薄

        Worksheet ws = (Worksheet)wb.Worksheets.get_Item(1);

        //取得总记录行数   (包括标题列)

        int rowsint = ws.UsedRange.Cells.Rows.Count; //得到行数

        //int columnsint = mySheet.UsedRange.Cells.Columns.Count;//得到列数

        //取得数据范围区域 (不包括标题列)

        Range rng1 = ws.Cells.get_Range("B2", "B" + rowsint);   //item

        Range rng2 = ws.Cells.get_Range("K2", "K" + rowsint); //Customer

        object[,] arryItem= (object[,])rng1.Value2;   //get range‘s value

        object[,] arryCus = (object[,])rng2.Value2;  

        //将新值赋给一个数组

        string[,] arry = new string[rowsint-1, 2];

        for (int i = 1; i <= rowsint-1; i++)

        {

            //Item_Code列

            arry[i - 1, 0] =arryItem[i, 1].ToString();

            //Customer_Name列

            arry[i - 1, 1] = arryCus[i, 1].ToString();

        }

        Response.Write(arry[0, 0] + " / " + arry[0, 1] + "#" + arry[rowsint - 2, 0] + " / " + arry[rowsint - 2, 1]);

    }

     excel.Quit(); excel = null;

    Process[] procs = Process.GetProcessesByName("excel");

    foreach (Process pro in procs)

    {

        pro.Kill();//没有更好的方法,只有杀掉进程

    }

    GC.Collect();

}

3.方法三:将EXCEL文件转化成CSV(逗号分隔)的文件,用文件流读取(等价就是读取一个txt文本文件)。


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

先引用命名空间:using System.Text;和using System.IO;

FileStream fs = new FileStream("d:\\Customer.csv", FileMode.Open, FileAccess.Read, FileShare.None);

StreamReader sr = new StreamReader(fs, System.Text.Encoding.GetEncoding(936));

string str = "";

string s = Console.ReadLine();

while (str != null)

{    str = sr.ReadLine();

     string[] xu = new String[2];

     xu = str.Split(‘,‘);

     string ser = xu[0];

     string dse = xu[1];                if (ser == s)

     { Console.WriteLine(dse);break;

     }

}   sr.Close();

另外也可以将数据库数据导入到一个txt文件,实例如下:


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

//txt文件名

 string fn = DateTime.Now.ToString("yyyyMMddHHmmss") + "-" + "PO014" + ".txt";

 OleDbConnection con = new OleDbConnection(conStr);

 con.Open();

 string sql = "select ITEM,REQD_DATE,QTY,PUR_FLG,PO_NUM from TSD_PO014";       

//OleDbCommand mycom = new OleDbCommand("select * from TSD_PO014", mycon);

 //OleDbDataReader myreader = mycom.ExecuteReader(); //也可以用Reader读取数据

 DataSet ds = new DataSet();

 OleDbDataAdapter oda = new OleDbDataAdapter(sql, con);

 oda.Fill(ds, "PO014");

 DataTable dt = ds.Tables[0];

 FileStream fs = new FileStream(Server.MapPath("download/" + fn), FileMode.Create, FileAccess.ReadWrite);

 StreamWriter strmWriter = new StreamWriter(fs);    //存入到文本文件中

 //把标题写入.txt文件中

 //for (int i = 0; i <dt.Columns.Count;i++)

 //{

 //    strmWriter.Write(dt.Columns[i].ColumnName + " ");

 //}

 

 foreach (DataRow dr in dt.Rows)

 {

     string str0, str1, str2, str3;

     string str = "|"; //数据用"|"分隔开

     str0 = dr[0].ToString();

     str1 = dr[1].ToString();

     str2 = dr[2].ToString();

     str3 = dr[3].ToString();

     str4 = dr[4].ToString().Trim();

     strmWriter.Write(str0);

     strmWriter.Write(str);

     strmWriter.Write(str1);

     strmWriter.Write(str);

     strmWriter.Write(str2);

     strmWriter.Write(str);

     strmWriter.Write(str3);

     strmWriter.WriteLine(); //换行

 }

 strmWriter.Flush();

 strmWriter.Close();

 if (con.State == ConnectionState.Open)

 {

     con.Close();

 }

时间: 2024-10-30 20:24:48

C#读取excel等表格常用方法的相关文章

【c#操作office】--OleDbDataAdapter 与OleDbDataReader方式读取excel,并转换为datatable

OleDbDataAdapter方式: /// <summary> /// 读取excel的表格放到DataTable中 ---OleDbDataAdapter /// </summary> /// <param name="strSql"></param>        /// <param name="excelpath">excel路径</param> /// <returns>

利用java反射机制实现读取excel表格中的数据

如果直接把excel表格中的数据导入数据库,首先应该将excel中的数据读取出来. 为了实现代码重用,所以使用了Object,而最终的结果是要获取一个list如List<User>.List<Book>等,所以需要使用泛型机制去实现.下面会给出代码,可能会稍微复杂一点,但注释很清晰,希望大家耐心阅读. 在上代码之前简单说一下思路: 1.excel表格必须有表头,且表头中各列的值要与实体类的属性相同: 2.先读取表头信息,然后获取表头列数,接着确定需要使用的set方法的名称,并存到数

python读取excel表格生成sql语句 第一版

由于单位设计数据库表·,都用sql.不知道什么原因不用 powerdesign或者ermaster工具,建表很痛苦  作为程序猿当然要想办法解决,用Python写一个程序解决 需要用到 xlrd linux下 sudo pip install xlrd 主要是适用于db2数据库 excel 表结构 其中 number是不正确的字段类型 不知道同事为啥这么设置.这里程序里有纠错,这个程序就是将sql语句拼好. __author__ = 'c3t' # coding:utf-8 import xlr

Java读取excel表格

Java读取excel表格 一般都是用poi技术去读取excel表格的,但是这个技术又是什么呢 什么是Apache POI? Apache POI是一种流行的API,它允许程序员使用Java程序创建,修改和显示MS Office文件.这由Apache软件基金会开发使用Java分布式设计或修改Microsoft Office文件的开源库.它包含类和方法对用户输入数据或文件到MS Office文档进行解码. Apache POI Apache POI是Apache软件基金会提供的100%开源库.大多

java编程之POI读取excel表格的内容

07版本的excel需要另外加一个jar包.xbean.jar的jar包 读取代码模板.利用模板介绍读取excel的一些poi的api这是重点 1 /** 2 * 读取excel文件 3 * @Title: readExcel 4 * @Description: TODO(这里用一句话描述这个方法的作用) 5 * @author 尚晓飞 6 * @date 2014-11-10 上午8:58:01 7 * @param readPath 读取电脑硬盘上某个excel的绝对路径 例如:C://20

C++读取excel表格

C++读取excel文件 1 创建mfc程序(这里以vs2013为例) 到这里直接点击完成即可. 2 添加读取excel文件用到的类 2.1 打开类向导 2.2 添加类 将_Application._Workbook._Worksheet.Workbooks.Worksheets添加到"生成的类"中 3 添加完成后,找到相关头文件,注释/删除 #import "D:\\software\\office2010\\Office14\\EXCEL.EXE"no_name

java读取Excel表格中的数据

1.需求 用java代码读取hello.xls表格中的数据 2.hello.xls表格 3.java代码 package com.test; import java.io.File; import jxl.*; public class ReadExcel{ public static void main(String[] args) { int i; Sheet sheet; Workbook book; Cell cell1,cell2,cell3,cell4,cell5,cell6,cel

通过python中xlrd读取excel表格(xlwt写入excel),xlsxwriter写入excel表格并绘制图形

1 import xlrd, xlwt 2 3 #读取excel文件 4 def read_excel(url):#传入源文件读取路径 5 # 获取数据 6 data = xlrd.open_workbook(url) 7 # 获取sheet 8 # table = data.sheet_by_name(sheet_name) #通过sheet名称获取sheet数据 9 table = data.sheet_by_index(0) #通过sheet索引获取sheet数据 10 # 获取总行数 1

Python:读取Excel表格时出现的u&#39;\u51c6’ 无法正确显示汉字

读取Excel后,想显示其中一行的元素,结果读出来是这样[u'\u51c6\u8003\u8bc1\u53f7', u'\u8003\u751f\u59d3\u540d'],始终不显示正常的汉字 依照网上的方法直接print()即可输出,试验后发现确实可以,不过一次只能输出一个元素,多余一个元素则依旧 后查找得知解决方法:需要用到json库 1 import json 2 #……文件的读取略去 3 #json.dumps(A).decode("unicode-escape") 4 #这