• Excel表复制、取消工作表保护、解除冻结操作


    最近处理Farpoint保存下来的Excel时,发现表格式有各种问题,下面是修改Excel格式操作到内容,做下笔记 :)

    /// <summary>
    /// Excel表相关操作
    /// </summary>
    /// <param name="firstpath">第一个Excel表路径</param>
    /// <param name="secondpath">第二个Excel表路径</param>
    private void ExcelOperation(string firstpath, string secondpath)
    {
        try
        {
            Microsoft.Office.Interop.Excel.Application App = new Microsoft.Office.Interop.Excel.Application();
            Microsoft.Office.Interop.Excel.Workbook fWorkbook = App.Workbooks.Open(firstpath, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
            Microsoft.Office.Interop.Excel.Workbook sWorkbook = App.Workbooks.Open(secondpath, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
            App.DisplayAlerts = false;  //屏蔽操作提示
            try
            {
                ((Microsoft.Office.Interop.Excel.Worksheet)sWorkbook.Sheets[1]).Delete();  //删除第二个表第一个Sheet
                sWorkbook.Save();

                Microsoft.Office.Interop.Excel.Worksheet sheet = (Microsoft.Office.Interop.Excel.Worksheet)fWorkbook.Sheets[1];  //获取第一个表第一个Sheet

                sheet.Unprotect(Type.Missing);   //取消工作表保护

                Microsoft.Office.Interop.Excel.Range range = (Microsoft.Office.Interop.Excel.Range)sheet.Rows[1, Type.Missing];  //获取第一行
                sheet.Activate();
                App.ActiveWindow.FreezePanes = false;  //解除冻结
                App.ActiveWindow.SplitColumn = 0;
                App.ActiveWindow.SplitRow = 0;

                range.Interior.ColorIndex = 0;    //设置第一行为白色
                range.Delete(Microsoft.Office.Interop.Excel.XlDirection.xlDown);     //删除第一行

                sheet.Copy(sWorkbook.Sheets[1], Type.Missing);  //复制到第二个表中
                sWorkbook.Save();

            }
            catch (Exception ex)
            {
            }
            finally
            {
                fWorkbook.Close(false, firstpath, null);
                System.Runtime.InteropServices.Marshal.ReleaseComObject(fWorkbook);
                fWorkbook = null;

                sWorkbook.Close(false, secondpath, null);
                System.Runtime.InteropServices.Marshal.ReleaseComObject(sWorkbook);
                sWorkbook = null;

                App.Quit();
                System.Runtime.InteropServices.Marshal.ReleaseComObject(App);
            }
        }
        catch (Exception ex)
        {

        }
    }

  • 相关阅读:
    JS完整获取IE浏览器信息
    C# DataSet和DataTable详解
    linux下mysql导入数据
    Linux上安装mysql
    JDK6+tomcat7+mysql官网下载地址
    Linux常用命令
    mysql 授权
    tomcat7.0学习笔记
    struts2 <s:property/>标签的使用输出时间格式转换
    Linux如何查找软件安装路径?
  • 原文地址:https://www.cnblogs.com/moss_tan_jun/p/1950541.html
Copyright © 2020-2023  润新知