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() { " " });
            }
  • 相关阅读:
    第三十章 混合线程同步构造
    第二十九章 基元线程同步构造
    第二十八章 I/O限制的异步操作
    第二十七章 计算限制的异步操作
    第二十六章 线程基础
    第二十五章 与WinRT组件互操作
    css实现排序箭头
    js中的toFixed神坑
    react使用中碰到的小问题
    看到一个js中sleep的例子,挺好玩的
  • 原文地址:https://www.cnblogs.com/yanjinliang/p/5972041.html
Copyright © 2011-2022 走看看