C#导出Excel,并且设置Excel单元格格式,合并单元格.

注:要添加COM组件 Microsoft Excel 11.0 Object Library  引用。

具体代码如下:

using System;

using System.Collections.Generic;

using System.Text;

using System.Data.SqlClient;

using Excel;

using System.Reflection;

using System.Data;

using System.Data.OleDb;

namespace RecruitmentReport

{

    classdoExcel

    {

        enumColumnName {A1=1,B1,C1,D1,E1,F1,G1,H1,I1,J1,K1,L1,M1,N1,O1,P1,Q1,R1,S1,T1,U1,V1,W1,X1,Y1,Z1}

        /// <summary>

        /// 导出到Execl

        /// </summary>

        /// <param name="dt">数据集</param>

        /// <param name="strSheetName">工作部名称</param>

        /// <param name="pathloading">保存路径</param>

        /// <param name="title">标题名</param>

        publicvoid doExport(DataSet dt, string strSheetName, string pathloading, string title)

        {

 

            int columnIndex = dt.Tables[0].Columns.Count;

            string cName =((ColumnName)columnIndex).ToString();

            Excel.Application excel = new Excel.Application();  //Execl的操作类

            Excel.Workbook bookDest =(Excel.Workbook)excel.Workbooks.Add(Missing.Value);

            Excel.Worksheet sheetDest = bookDest.Worksheets.Add(Missing.Value, Missing.Value, Missing.Value, Missing.Value) as Excel.Worksheet;//给工作薄添加一个Sheet   

            sheetDest.Name = strSheetName;

            for (int i = bookDest.Worksheets.Count; i >1; i--)

            {

                Worksheet wt = (Worksheet)bookDest.Worksheets[i]; 

                if (wt.Name != strSheetName)

                {

                    wt.Delete();

                }

            }

            int rowIndex = 2;

            int colIndex = 0;

            Range rngRow = (Excel.Range)sheetDest.Columns[1, Type.Missing];

            rngRow.UseStandardWidth = 70;

            Range rngA = (Range)sheetDest.Columns["A", Type.Missing];//设置单元格格式

            rngA.NumberFormatLocal = "@";//字符型格式

            Range rngJ = (Range)sheetDest.Columns["J", Type.Missing];

            rngJ.NumberFormatLocal = "@";

            Range rngQ = (Range)sheetDest.Columns["Q", Type.Missing];

            rngQ.NumberFormatLocal = "@";

            Range rngE = (Range)sheetDest.Columns["E", Type.Missing];

            rngE.NumberFormatLocal = @"yyyy-mm-dd";//日期型格式

            sheetDest.get_Range("A1", cName).Merge(sheetDest.get_Range("A1", cName).MergeCells);//合并单元格

            excel.Application.Workbooks.Add(true);

            try

            {

                Range rngfirst = (Excel.Range)sheetDest.Cells[1, 1];

                sheetDest.Cells[1, 1] = title + System.DateTime.Now.Month.ToString().PadLeft(2, '0') + System.DateTime.Now.Day.ToString().PadLeft(2, '0') + System.DateTime.Now.Year.ToString();

                rngfirst.Font.Size = 14;

                rngfirst.Font.Name = "Calibri";//设置单元格字体

                rngfirst.RowHeight = 18;

                rngfirst.HorizontalAlignment = XlHAlign.xlHAlignCenter;

                rngfirst.Font.Bold = true;

                rngfirst.Borders.LineStyle = XlLineStyle.xlContinuous;//设置单元格边框

                foreach (DataColumn col in dt.Tables[0].Columns)

                {

                 

                        colIndex++;

                        Range rng = (Excel.Range)sheetDest.Cells[2, colIndex];

                       

                            sheetDest.Cells[2, colIndex] = col.ColumnName;//Execl中的第一列把DataTable的列名先导进去

                            rng.Font.Name = "Calibri";

                            rng.Font.Size = 11;

                            rng.Font.Bold = true;

                            rng.Font.Color = ConsoleColor.Blue;

                            rng.HorizontalAlignment = XlHAlign.xlHAlignCenter;

                            rng.RowHeight = 15;

                            rng.Borders.LineStyle = XlLineStyle.xlContinuous;

                            rng.ColumnWidth = 15.5;

                     //   sheetDest.Range[1, colIndex].Font.Bold = false;

                }

                //导入数据行

                foreach (DataRow row in dt.Tables[0].Rows)

                {

                    rowIndex++;

                    colIndex = 0;

                    foreach (DataColumn col in dt.Tables[0].Columns)

                    {

                               colIndex++;

                                sheetDest.Cells[rowIndex, colIndex] = row[col.ColumnName].ToString();

                                Range rng01 = (Excel.Range)sheetDest.Cells[rowIndex, colIndex];

                                rng01.HorizontalAlignment = XlHAlign.xlHAlignCenter;

                                rng01.Borders.LineStyle = XlLineStyle.xlContinuous;

                                rng01.RowHeight = 15;

                                rng01.Font.Name = "Calibri";

                                rng01.Font.Size = 11;

                        }   

                } 

            }

            catch  { thrownewException(); }

            bookDest.Saved = true;

            bookDest.SaveCopyAs(pathloading);//保存

            excel.Quit();

            excel = null;

            GC.Collect();//垃圾回收   

        }

   }

}

 

http://hi.baidu.com/jimpanf/item/6773171847b46e14e2f98637

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在 C#导出 Excel合并单元格,可以使用 `Microsoft.Office.Interop.Excel` 库。下面是一个示例代码,演示了如何导出一个 DataTable 并合并某些单元格: ```csharp using System; using System.Data; using System.IO; using System.Windows.Forms; using Excel = Microsoft.Office.Interop.Excel; namespace ExcelExportDemo { public partial class MainForm : Form { public MainForm() { InitializeComponent(); } private void ExportButton_Click(object sender, EventArgs e) { // 创建一个新的 Excel 应用程序实例 Excel.Application excelApp = new Excel.Application(); excelApp.Visible = false; // 创建一个工作簿并获取其工作表 Excel.Workbook workbook = excelApp.Workbooks.Add(); Excel.Worksheet worksheet = workbook.ActiveSheet; // 获取 DataTable 的列数和数 int columnCount = dataTable.Columns.Count; int rowCount = dataTable.Rows.Count; // 写入标题 for (int i = 0; i < columnCount; i++) { worksheet.Cells[1, i + 1] = dataTable.Columns[i].ColumnName; } // 写入数据 for (int i = 0; i < rowCount; i++) { for (int j = 0; j < columnCount; j++) { worksheet.Cells[i + 2, j + 1] = dataTable.Rows[i][j].ToString(); } } // 合并单元格 Excel.Range range = worksheet.Range[worksheet.Cells[1, 1], worksheet.Cells[1, columnCount]]; range.Merge(); // 设置合并单元格的样式 range.Font.Size = 16; range.Font.Bold = true; range.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter; // 保存 Excel 文件 SaveFileDialog saveFileDialog = new SaveFileDialog(); saveFileDialog.Filter = "Excel 文件|*.xlsx"; saveFileDialog.Title = "保存 Excel 文件"; saveFileDialog.ShowDialog(); if (saveFileDialog.FileName != "") { workbook.SaveAs(saveFileDialog.FileName); workbook.Close(); excelApp.Quit(); MessageBox.Show("导出成功!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("未选择文件路径!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } } ``` 在这个示例中,我们首先在标题合并了所有单元格,并设置合并单元格的样式。你可以根据需要更改合并的范围、样式等。 希望这个示例对你有所帮助!如果还有其他问题,请随时提问。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值