码迷,mamicode.com
首页 > Windows程序 > 详细

winform NPOI excel 导出并选择保存文件路径

时间:2018-10-12 23:53:32      阅读:424      评论:0      收藏:0      [点我收藏+]

标签:art   .text   opd   datetime   cell   sheet   dir   directory   print   

        public void ExcelOp(DataGridView gdv,ArrayList selHead)
        {
            if (selHead.Count==0)
            {
                MessageBox.Show("没有数据,无法导出EXCEL!");
                return;
            }

            IWorkbook excel = new HSSFWorkbook();//创建.xls文件
            ISheet sheet = excel.CreateSheet("sheet1"); //创建sheet
            IRow row = sheet.CreateRow(0);
            //创建行对象,填充表头
            row.CreateCell(0).SetCellValue("月份");
            row.CreateCell(1).SetCellValue("门\\病");
            row.CreateCell(2).SetCellValue("科别");
            row.CreateCell(3).SetCellValue("收入类别");
            row.CreateCell(4).SetCellValue("姓名");
            
            //写入文件 弹出文件保存
            //string DesktopPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);//桌面路径
            string filename = statistics_head.Text+ printDetailClass.GetUnixTime(DateTime.Now).ToString();//文件名
            SaveFileDialog saveDialog = new SaveFileDialog();
            saveDialog.DefaultExt = "xls";
            saveDialog.Filter = "Excel文件|*.xls";
            saveDialog.FileName = filename;
            saveDialog.ShowDialog();
            filename = saveDialog.FileName;
            if (filename.IndexOf(":") < 0) return; //被点了取消
            FileStream xlsfile = new FileStream(saveDialog.FileName, FileMode.Create);
            excel.Write(xlsfile);
            xlsfile.Close();
            System.Diagnostics.Process.Start(filename);
        }

  

winform NPOI excel 导出并选择保存文件路径

标签:art   .text   opd   datetime   cell   sheet   dir   directory   print   

原文地址:https://www.cnblogs.com/aj407blogs/p/9780423.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!