读取EXCEL的简单方式

Posted 巫居树

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取EXCEL的简单方式相关的知识,希望对你有一定的参考价值。

        private void OpenExcel(string strFileName)
        {
            object missing = System.Reflection.Missing.Value;

            Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();//启动Excel应用程序

            if (excel == null)
            {
                MessageBox.Show("Can‘t access excel");
            }
            else
            {
                excel.Visible = false;//对象是否可见
                excel.UserControl = true;//如果应用程序可见或者由用户创建或启动,则为true。 如果您使用CreateObject或GetObject函数以编程方式创建或启动应用程序,并且隐藏应用程序,则为False。

                //只读方式打开EXCEL文件
                Workbook wb = excel.Application.Workbooks.Open(strFileName, missing, true, missing, missing, missing, missing, missing, 
                                                                missing, true, missing, missing, missing, missing, missing);

             
                //取得第1个工作薄
                Worksheet ws = (Worksheet)wb.Worksheets.get_Item(1);

               Range value1 = ws.Cells[2][5];//单元格:B-5
               Range value2 = ws.Cells[1][2];//单元格:A-2
              
               this.textBox1.Text =value2.Text;
            }

            excel.Quit(); excel = null;//退出Microsoft Excel

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

            foreach (Process pro in procs)
            {
                pro.Kill();//没有更好的方法,只有杀掉进程
            }
            GC.Collect();
        }

 

以上是关于读取EXCEL的简单方式的主要内容,如果未能解决你的问题,请参考以下文章

java 取Excel带有小数点数据,不能取完整,只能取小数点的后面2位,怎么解决?

2015版vs c#读取excel代码

Java通过jxl解析Excel文件入库,及日期格式处理方式 (附源代码)

使用PHP Excel类读取和生成excel文件

easypoi 读取 Excel 简单应用

poi大数据读写excel