提取excel数据完整代码2020-11-26

2020-11-26  本文已影响0人  new_blash

代码如下:

//using一下
//原生excel类库
using Microsoft.Office.Interop.Excel;
//第三方库
using Spire.Xls;

//检测电脑中是否安装了excel
private static bool isExcelInstalled()
        {
            Type type = Type.GetTypeFromProgID("Excel.Application");
            return type != null;
        }

//关闭excel时使用
private static void CloseProc(string ProcName)//关闭excel时需要用
        {
            ArrayList procList = new ArrayList();
            string tempName;
            foreach (System.Diagnostics.Process thisProc in System.Diagnostics.Process.GetProcesses())
            {
                tempName = thisProc.ProcessName;
                procList.Add(tempName);
                if (tempName == ProcName)
                {
                    thisProc.Kill(); //当发送关闭窗口命令无效时强行结束进程 
                }
            }
        }

public static Queue<Person> EXCEL提取数据(string 路径)
        {
            Queue<Person> 结果 = new Queue<Person>();
            //自行判断使用第三方或者excel本身自带的类库进行处理(本身自带的分打开excel和不打开excel两种)
            if (路径 != null && isExcelInstalled() == false)
            {
                //有路径,但是没安装excel,执行第三方dll来进行处理,可以不用打开excel
                //创建新对象
                Spire.Xls.Workbook workbook = new Spire.Xls.Workbook();
                //打开excel表
                workbook.LoadFromFile(路径);
                //获取活动的sheet
                Spire.Xls.Worksheet sheet = workbook.ActiveSheet;
                try
                {
                    结果.Enqueue(new Person("提示:", "第三方DLL提取"));
                    //提取数据
                    for (int cout = 9; cout <= 99999; cout++)
                    {
                        if (sheet.Range[cout, 3].Text != null && sheet.Range[cout, 8].Value2 != null && sheet.Range[cout, 1].Text != "合计")
                        {
                            Person p = new Person(sheet.Range[cout, 3].Text, sheet.Range[cout, 8].Text);
                            结果.Enqueue(p);
                        }
                        else
                        {
                            break;
                        }
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "第三方提取错误");
                }
                try
                {//释放资源,必须要处理的一步,如果不处理,数据比较多的话会造成短时间内内存被异常占用,直到系统自动回收为止
                    if (workbook != null)
                    {
                        workbook.Dispose();
                    }
                    else
                    {
                        workbook = null;
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "释放资源错误");
                }
                return 结果;
            }
            else if (路径 != null && isExcelInstalled() == true)
            {
                //路径为空,安装了excel,进行原生excel处理,可以不用打开excel
                //判断路径是否合法
                Microsoft.Office.Interop.Excel.Application app; //应用程序
                Workbooks wbs;//excel中的 workbooks
                Microsoft.Office.Interop.Excel.Workbook wb = null; //workbook
                Microsoft.Office.Interop.Excel.Worksheet ws; //worksheet
                app = new Microsoft.Office.Interop.Excel.Application();//new一个新对象
                wbs = app.Workbooks;//从新对象中取的workbooks
                wbs.Application.Visible = false;//不显示APP操作
                app.ScreenUpdating = false;//禁止刷新屏幕
                app.DisplayAlerts = false;//是否弹出提示框
                try
                {
                    结果.Enqueue(new Person("提示:", "原生excel提取"));
                    wb = wbs.Open(路径);//打开excel表
                    ws = wb.ActiveSheet;//获取活动的sheet,一般为第一个sheet
                    //每个公司表格样式不同,下面的获取位置也不同,请自行修改,ZW表格的内容是从第9行开始,所以下面 cout=9
                    //提取数据,直接从9~99999行中查找编码和数量不为空的数据,为空就停止
                    for (int cout = 9; cout <= 99999; cout++)
                    {//下面是从[9,3]9行3列中获取值,后面9行8列中获取值,分别代表的是编码和数量
                        if (ws.Cells[cout, 3].Value2 != null && ws.Cells[cout, 8].Value2 != null)
                        {
                            //将获取到的编码和数量放进person类中,然后再将person类放入队列
                            Person p = new Person(ws.Cells[cout, 3].Value2, ws.Cells[cout, 8].Value2);
                            结果.Enqueue(p);
                        }
                        else
                        {
                            break;
                        }
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "原生提取错误"); 
                }
                try
                {//释放资源,必须要处理的一步,如果不处理,数据比较多的话会造成短时间内内存被异常占用,直到系统自动回收为止
                    if (wb != null)
                    {
                        wb.Close(Type.Missing, Type.Missing, Type.Missing);
                    }
                    else
                    {
                        wb = null;
                    }
                    if (wbs != null)
                    {
                        wbs.Close();
                    }
                    else
                    {
                        wbs = null;
                    }
                    if (app != null)
                    {
                        app.Quit();
                    }
                    else
                    {
                        app = null;
                    }
                    //GC.Collect();//系统自动回收资源,没有人为释放彻底,弃用
                    //关闭excel进程,如果不关闭,也会造成资源被占用,excel进程一堆的情况
                    CloseProc("EXCEL");
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "释放资源错误");
                }
                return 结果;
            }
            else if(路径 == null && isExcelInstalled() == true)
            {
                //没有路径,但是安装了excel,此类情况一般用于excel插件,直接进行内容处理(必须打开excel)
                //此方法必须用VSTO程序,所以这里不使用
                结果.Enqueue(new Person("提示", "此方法不支持"));
                return 结果;
            }
            else
            {
                结果.Enqueue(new Person("提示", "未知方法"));
                return 结果;
            }
        }

使用方法:

            Queue<Person> p;
            OpenFileDialog file = new OpenFileDialog();
            file.Filter = "Excel表格|*.xls;*xlsx";
            DialogResult importDialogResult = file.ShowDialog();
            if (importDialogResult == DialogResult.Cancel)
            {
                return;
            }
            if (importDialogResult == DialogResult.OK)
            {
                p = MBCore.EXCEL提取数据(file.FileName);//数据入队
                foreach (Person str in p)
                {//从队列中预览数据,生产环境采用出队方法更好,出来一个数据处理一次
                    if (str.编码.ToString().Contains("提示"))
                    {
                        //.......第一行有提示的处理
                    }
                    else
                    {
                        //第二行没有提示的处理
                    }
                }
                p.Clear();//清空队列,清空内存中的数据,当然也可以不用管,系统后期会自动给你处理掉
            }

效果如下:


image.png
image.png

完成,后面会越来越复杂了,需要把前面所有内容全部整合,还要处理他们之间的耦合问题(就是一个模块出问题,其他跟着全GG),后面更新会变慢了,未完待续.........

上一篇下一篇

猜你喜欢

热点阅读