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();
 }

C# 读取EXCEL文件的三种经典方法相关推荐

  1. php远程读取几行文件,PHP读取远程文件的三种方法

    PHP读取远程文件的三种方法 (2008-08-01 14:29:55) 标签: php 下载远程文件 it HP读取远程文件的几种方法,做采集的第一步就是读取远程文件- 1.file_get_con ...

  2. Ruby读取Excel文件的两种方法

    用Ruby读取Excel文件的两种重要方式 1. 通常做法,查阅微软提供的API了,需要包含win32, 在ruby前加入,require 'win32ole' 例如: require 'win32o ...

  3. python怎么读取excel-Python|读、写Excel文件(三种模块三种方式)

    python读写excel的方式有很多,不同的模块在读写的讲法上稍有区别: 用xlrd和xlwt进行excel读写: 用openpyxl进行excel读写: 用pandas进行excel读写: 为了方 ...

  4. python读文件的三种方式_Python|读、写Excel文件(三种模块三种方式)

    python读写excel的方式有很多,不同的模块在读写的讲法上稍有区别: 用xlrd和xlwt进行excel读写: 用openpyxl进行excel读写: import xlrd from xlut ...

  5. python填写excel-Python|读、写Excel文件(三种模块三种方式)

    python读写excel的方式有很多,不同的模块在读写的讲法上稍有区别: 用xlrd和xlwt进行excel读写: 用openpyxl进行excel读写: 用pandas进行excel读写: 为了方 ...

  6. 小白用python处理excel文件-Python读、写Excel文件(三种模块三种方式,小白也可学会)...

    python读写excel的方式有很多,不同的模块在读写的讲法上稍有区别: 用xlrd和xlwt进行excel读写: 用openpyxl进行excel读写: 用pandas进行excel读写: 为了方 ...

  7. Win11提示Windows无法访问指定设备路径或文件的三种解决方法

    ​Win11提示Windows无法访问指定设备路径或文件怎么办?导致出现这一情况的原因有很多,相信有很多小伙伴们对于这一情况,都不太情况应该怎么办,对此今天小编就为大家带来三种解决方法,希望能够帮到你 ...

  8. R读取excel文件乱码 read.xlsx() 解决方法

    1. 参考[R语言]R读取含中文excel文件,read.xlsx乱码问题  该文章总结得很好,可以直接跳到最后看博主的总结. 2. 如果依旧是乱码那么用read.xlsx2()去读取excel文件, ...

  9. ASP.NET上传文件的三种基本方法

    ASP.NET依托.net framework类库,封装了大量的功能,使得上传文件非常简单,主要有以下三种基本方法. 方法一:用Web控件FileUpload,上传到网站根目录. Test.aspx关 ...

最新文章

  1. Java教程分享:五分钟了解一致性hash算法
  2. SqlServer跨域查询
  3. 蠢货别忘(一)common lisp funcall
  4. SpringCloud Feign实战(二)
  5. 【registry】registry合并带spring boot项目第一弹
  6. 为什么感觉iPhone 11还有很多人去买?
  7. aws rds监控慢sql_使用AWS Lambda函数自动启动/停止AWS RDS SQL Server
  8. android对接单片机wifi模块
  9. Composition API的优势
  10. BJFUOJ 1429
  11. 全栈工程师就无敌吗?真的能做到个人即团队吗?
  12. 字体大小fontsize中的pt、px、em
  13. 当当图书,这又是何苦。
  14. Linux 安装locust
  15. python爬虫系列--lxml(etree/parse/xpath)的使用
  16. 【指针】一级指针二级指针知识点梳理
  17. 搭建游戏联运系统需要什么条件?
  18. 数学科学与计算机技术,数学科学与计算技术学院
  19. 怎么修改电脑的MAC(物理)地址
  20. 手机拍照识别 如何识别车牌号并给出数据

热门文章

  1. javascript--DOM概念
  2. 下拉加载更多--判断页面距离
  3. Unity应用架构设计(10)——绕不开的协程和多线程(Part 1)
  4. Java RMI 介绍
  5. extundelete 简单使用
  6. Centos 安装配置gerrit
  7. PHPEXCEL实例
  8. Diskpart 磁盘管理实战演示
  9. TyepScript入门教程 之 async await
  10. Docker快速搭建TeamSpeak多人语音聊天服务器