zoukankan      html  css  js  c++  java
  • C# 利用占位符替换word中的字符串和添加图片

    利用占位符替换word中的字符串和添加图片
      ///<summary>
            /// 替换word模板文件内容,包括表格中内容
            /// 调用如下:WordStringsReplace("D:/CNSI/CNSI_1.doc", new ArrayList() { "old1", "old2" }, new ArrayList() { "new1", "new2" });
            /// </summary>
            /// <param name="filePath">文件全路径</param>
            /// <param name="arr_Old">占位符数组</param>
            /// <param name="arr_New">替换字符串数组</param>
            public void WordStringsReplace(string filePath, ArrayList arr_Old, ArrayList arr_New)
            {
                if (!File.Exists(filePath))
                {
                    MessageBox.Show("模板文件不存在!");
                    return;
                }
                if (arr_Old.Count != arr_New.Count)
                {
                    MessageBox.Show("占位符和替换内容不一致!");
                    return;
                }
                Microsoft.Office.Interop.Word.Application app = new Microsoft.Office.Interop.Word.Application();
                object oMissing = System.Reflection.Missing.Value;
                object file = filePath;
                Microsoft.Office.Interop.Word._Document doc = app.Documents.Open(ref file,
                       ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
                       ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
                       ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
                for (int i = 0; i < arr_Old.Count; i++)
                {
                    app.Selection.Find.ClearFormatting();
                    app.Selection.Find.Replacement.ClearFormatting();
                    app.Selection.Find.Text = arr_Old[i].ToString();
                    app.Selection.Find.Replacement.Text = arr_New[i].ToString();
                    object objReplace = Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll;
                    app.Selection.Find.Execute(ref oMissing, ref oMissing, ref oMissing,
                                               ref oMissing, ref oMissing, ref oMissing,
                                               ref oMissing, ref oMissing, ref oMissing,
                                               ref oMissing, ref objReplace, ref oMissing,
                                               ref oMissing, ref oMissing, ref oMissing);
                }
            
                //保存
                doc.Save();
                doc.Close(ref oMissing, ref oMissing, ref oMissing);
                app.Quit(ref oMissing, ref oMissing, ref oMissing);
            }
            /// <summary>
            /// 替换word模板文件中图片,这个只能替换一个图片,多个测试有点问题
            /// </summary>
            /// <param name="filePath">文件全路径</param>
            /// <param name="str_Old">占位符字符串</param>
            /// <param name="str_Pics">替换图片路径</param>
            /// <param name="x">x点位置,(0,0)在该占位符所在行和列的原点</param>
            /// <param name="y">y点位置</param>
            /// <param name="width">图片宽度</param>
            /// <param name="height">图片高度</param>
            public void WordStringsReplace(string filePath, String str_Old, String str_Pics, int x, int y, int w, int h)
            {
                if (!File.Exists(filePath))
                {
                    MessageBox.Show("模板文件不存在!");
                    return;
                }
                Microsoft.Office.Interop.Word.Application app = new Microsoft.Office.Interop.Word.Application();
                object oMissing = System.Reflection.Missing.Value;
                object file = filePath;
                Microsoft.Office.Interop.Word._Document doc = app.Documents.Open(ref file,
                       ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
                       ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
                       ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
                object replaceAll = Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll;
                object LinkToFile = false;
                object SaveWithDocument = true;
                app.Selection.Find.ClearFormatting();
                app.Selection.Find.Text = str_Old;
                app.Selection.Find.Execute(ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
                object Anchor = app.Selection.Range;
                //oDoc.InlineShapes.AddPicture(picfileName, ref LinkToFile, ref SaveWithDocument, ref Anchor);         
                object left = x;
                object top = y;
                object width = w;
                object height = h;
                Anchor = app.Selection.Range;
                doc.Shapes.AddPicture(str_Pics, ref LinkToFile, ref SaveWithDocument, ref left, ref top, ref width, ref height, ref  Anchor);
                //保存
                doc.Save();
                doc.Close(ref oMissing, ref oMissing, ref oMissing);
                app.Quit(ref oMissing, ref oMissing, ref oMissing);
                //清除占位符
                WordStringsReplace("D:/CNSI/CNSI_1.doc", new ArrayList() { str_Old }, new ArrayList() { " " });
            }
  • 相关阅读:
    Laravel 静态资源管理及表单布局
    Laravel 中间件的使用(前置与后置)
    Laravel 中的模板中的url
    Laravel 基础语法和include的使用
    Laravel模板的继承
    Laravel的路由、控制器和模型
    用composer安装laravel
    vue cli3.0 给路径起别名 vue.config.js ;代码统一风格 .editorconfig
    github的使用
    Java学习的第十二天
  • 原文地址:https://www.cnblogs.com/yanjinliang/p/5972041.html
Copyright © 2011-2022 走看看