1. 程式人生 > >c# word操作篇,解決字符串長度超過255就不能替換的問題

c# word操作篇,解決字符串長度超過255就不能替換的問題

lse close develop position div exist sdn public pla

本文使用的是Microsoft.Office.Interop.Word組件,必須在系統安裝了office相關組件的條件下進行,在com裏面找到Microsoft Word 16.0 Object Library並引用。

問題:使用c#操作word替換占位符的時候,當要替換的字符串超過一定的長度,就會提示“字符串參量過長”,搜索發現,替換的最大長度為255字符。

以220個字符串為例,執行替換工作。

         //構造數據
        Dictionary<string, string> datas = new Dictionary<string
, string>() { { "{name}", "張三" }, { "{sex}", "" }, { "{provinve}", "浙江" } }; //模板文件 object path = Server.MapPath("/Template/template.docx"); //生成文件 string physicNewFile = Server.MapPath("/createdfile/" + Guid.NewGuid().ToString() + ".docx");
        /// <summary>
/// 根據模板生成替換文件並下載 /// </summary> /// <param name="path">文件/模板地址</param> /// <param name="datas">需要替換的key:value集合</param> /// <param name="physicNewFile">生成文件地址</param> public void ReplaceToWord(object path, Dictionary<string
, string> datas, string physicNewFile) { Microsoft.Office.Interop.Word.Application app = null; Microsoft.Office.Interop.Word._Document doc = null; object oMissing = System.Reflection.Missing.Value; try { app = new Microsoft.Office.Interop.Word.Application(); object fileName = path; //打開模板文件 doc = app.Documents.Open(ref fileName, 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 replace = Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll; foreach (var item in datas) { app.Selection.Find.Replacement.ClearFormatting(); app.Selection.Find.ClearFormatting(); if (item.Value.Length > 220) FindAndReplaceLong(app, item.Key, item.Value); else FindAndReplace(app, item.Key, item.Value); } //對替換好的word模板另存為一個新的word文檔 doc.SaveAs(physicNewFile, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing); //準備導出word Response.Clear(); Response.Buffer = true; Response.Charset = "utf-8"; Response.AddHeader("Content-Disposition", "attachment;filename=" + DateTime.Now.ToString("yyyyMMddHHmmssss") + ".doc"); Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8"); Response.ContentType = "application/ms-word"; Response.End(); } catch (Exception ex) { throw ex; } finally { if (doc != null) { //關閉word文檔 doc.Close(ref oMissing, ref oMissing, ref oMissing); doc = null; } if (app != null) { //退出word應用程序 app.Quit(ref oMissing, ref oMissing, ref oMissing); app = null; } //GC.Collect(); //GC.WaitForPendingFinalizers(); //GC.Collect(); //GC.WaitForPendingFinalizers(); //如果文件存在則輸出到客戶端 if (System.IO.File.Exists(physicNewFile)) { Response.WriteFile(physicNewFile); } } }
        /// <summary>
        /// 根據字符串長度執行替換操作
        /// </summary>
        /// <param name="wordApp">當前word程序</param>
        /// <param name="findText">占位符(key)</param>
        /// <param name="replaceText">替換字符串(值)</param>
        public  void FindAndReplaceLong(Microsoft.Office.Interop.Word.Application wordApp, object findText, object replaceText)
        {
            int len = replaceText.ToString().Length;   //要替換的文字長度
            int cnt = len / 220;                    //不超過220個字
            string newstr;
            object newStrs;
            if (len < 220)   //小於220字直接替換
            {
                FindAndReplace(wordApp, findText, replaceText);
            }
            else
            {
                for (int i = 0; i <= cnt; i++)
                {
                    if (i != cnt)
                        newstr = replaceText.ToString().Substring(i * 220, 220) + findText;  //新的替換字符串
                    else
                        newstr = replaceText.ToString().Substring(i * 220, len - i * 220);    //最後一段需要替換的文字
                    newStrs = newstr;
                    FindAndReplace(wordApp, findText, newStrs);                              //進行替換
                }
            }
        }
        /// <summary>
        /// 執行替換操作
        /// </summary>
        /// <param name="wordApp">當前word程序</param>
        /// <param name="findText">占位符(key)</param>
        /// <param name="replaceText">替換字符串(值)</param>
        public  void FindAndReplace(Microsoft.Office.Interop.Word.Application wordApp, object findText, object replaceText)
        {
            //object oMissing = System.Reflection.Missing.Value;
            object matchCase = true;
            object matchWholeWord = true;
            object matchWildCards = false;
            object matchSoundsLike = false;
            object matchAllWordForms = false;
            object forward = true;
            object format = false;
            object matchKashida = false;
            object matchDiacritics = false;
            object matchAlefHamza = false;
            object matchControl = false;
            object read_only = false;
            object visible = true;
            object replace = 2; //object replace = Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll;
            object wrap = 1;
            wordApp.Selection.Find.Execute(ref findText, ref matchCase, ref matchWholeWord, ref matchWildCards, ref matchSoundsLike, ref matchAllWordForms, ref forward, ref wrap, ref format, ref replaceText,
                ref replace, ref matchKashida, ref matchDiacritics, ref matchAlefHamza, ref matchControl);
            // wordApp.Selection.Find.Execute( ref oMissing, ref oMissing,ref oMissing, ref oMissing,ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,ref oMissing, ref replace,
            //ref oMissing, ref oMissing,ref oMissing, ref oMissing);
        }

Asp.Net操作Word內容

如果要正常操作Word Com組件的話,必須要給用戶賦上足夠的權限的,

1、運行Dcomcnfg.exe

2、組件服務――計算機――我的電腦――DCOM配置――找到microsoft word 文檔
3、點擊屬性
4、選擇“安全性”
5、選定“使用自定義訪問權限”和“使用自定義啟動權限”
6、分別編輯權限,添加ASPNET,VS Developers,Debugger User //不一定
7、選擇“身份標識”,在選定“交互式用戶” 即可 (關鍵步驟)必須
8、在Web.config裏加 <identity impersonate="true"/>

參考地址:https://blog.csdn.net/lutaotony/article/details/51789666

c# word操作篇,解決字符串長度超過255就不能替換的問題