zoukankan      html  css  js  c++  java
  • DataTable导入到Excel文件

        public static bool DataTableToExcel(System.Data.DataTable dt, string fileName, bool showFileDialog=false)
            {
                if (showFileDialog)
                {
                    SaveFileDialog saveFileDialog = new SaveFileDialog();
                    saveFileDialog.Filter = "Execl files (*.xls)|*.xls";
                    saveFileDialog.FilterIndex = 0;
                    saveFileDialog.RestoreDirectory = true;
                    saveFileDialog.CreatePrompt = true;
                    saveFileDialog.FileName = fileName;
                    saveFileDialog.Title = "Export Excel File To";
                    // saveFileDialog.ShowDialog();

                    if (saveFileDialog.ShowDialog() == DialogResult.OK)
                        fileName = saveFileDialog.FileName;
                    else
                        return false;
                }
                System.Reflection.Missing miss = System.Reflection.Missing.Value;
                Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.ApplicationClass();
                Microsoft.Office.Interop.Excel.Workbooks books = (Microsoft.Office.Interop.Excel.Workbooks)excel.Workbooks;
                Microsoft.Office.Interop.Excel.Workbook book = (Microsoft.Office.Interop.Excel.Workbook)(books.Add(miss));
                Microsoft.Office.Interop.Excel.Worksheet sheet = (Microsoft.Office.Interop.Excel.Worksheet)book.ActiveSheet;
                if (!string.IsNullOrEmpty(dt.TableName))
                {
                    sheet.Name = dt.TableName;
                }

                int intIndex = 0;
                foreach (DataColumn column in dt.Columns)
                {
                    intIndex++;
                    excel.Cells[1, intIndex] = column.ColumnName;
                }

                int rowCount = dt.Rows.Count;
                int colCount = dt.Columns.Count;
                object[,] dataArray = new object[rowCount, colCount];
                for (int i = 0; i < rowCount; i++)
                {
                    for (int j = 0; j < colCount; j++)
                    {
                        //避免格式不兼容,加上"'"
                        dataArray[i, j] = "'"+dt.Rows[i][j].ToString();
                    }
                }

                sheet.get_Range("A2", sheet.Cells[rowCount + 1, colCount]).Value2 = dataArray;
                sheet.SaveAs(fileName, miss, miss, miss, miss, miss, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlNoChange, miss, miss, miss);

                book.Close(false, miss, miss);
                books.Close();
                excel.Quit();

                //System.Runtime.InteropServices.Marshal.ReleaseComObject();   
                System.Runtime.InteropServices.Marshal.ReleaseComObject(sheet);
                System.Runtime.InteropServices.Marshal.ReleaseComObject(book);
                System.Runtime.InteropServices.Marshal.ReleaseComObject(books);
                System.Runtime.InteropServices.Marshal.ReleaseComObject(excel);
                GC.Collect();
                return true;


            }
    View Code
  • 相关阅读:
    PHP htmlspecialchars和htmlspecialchars_decode(函数)
    使用CURL抓取淘宝页面
    PHP 自定义字符串中的变量名解析
    Notepad++前端开发常用插件介绍
    使用phpExcel实现Excel数据的导入导出(完全步骤)
    moment.js 日期包装类 (说明示例)
    php函数前面加&符号 和 变量前面加&符号的意义
    window 查看端口/杀进程
    eureka 去除注册中心保护机制
    mysql 表关联更新另一张表的数据
  • 原文地址:https://www.cnblogs.com/51net/p/3286557.html
Copyright © 2011-2022 走看看