通過XmlNodeType.ProcessingInstruction屬性擷取到InfoPath XML檔案頭資訊

來源:互聯網
上載者:User
通過InfoPath Form產生的XML檔案在檔案開頭的地方都會附加上一段特定的資訊,用於標識該XML檔案是由什麼版本的InfoPath Form產生的,所對應的XSN模板的存放位置等資訊,如所示:

那麼我們在使用XDocument.Load()方法載入該XML檔案之後,如何擷取到檔案頭中相關的節點資訊呢?如mso-infoPathSolution。

在XmlNodeType類型中,ProcessingInstruction申明了類似於“<?pi test?>” 的節點,我們可以通過該屬性來篩選XML的節點,下面的函數用於找出InfoPath Form XML檔案中的檔案頭資訊,並將mso-infoPathSolution節點中的href屬性值做修改,將XSN模板的位置修改成別的伺服器中對應的位置。

 1 /// <summary>
 2 /// Replace the reference url with the target server name for each InfoPath xml file.
 3 /// </summary>
 4 /// <param name="path"></param>
 5 /// <param name="targetServer"></param>
 6 public static void ReplaceReferenceUrl(string path, string targetServer)
 7 {
 8     const string pattern = "href=\"http://.*?/"; // Regular expression used for replacing the reference url in the XML files.
 9     DirectoryInfo info = new DirectoryInfo(path);
10     FileInfo[] files = info.GetFiles("*.xml");
11 
12     foreach (FileInfo file in files)
13     {
14         XDocument document = XDocument.Load(file.FullName);
15         List<XNode> list = document.Nodes().Where(t => t.NodeType == System.Xml.XmlNodeType.ProcessingInstruction).ToList<XNode>();
16         if (list != null)
17         {
18             foreach (XNode item in list)
19             {
20                 XProcessingInstruction tmp = item as XProcessingInstruction;
21                 if (tmp.Target.Equals("mso-infoPathSolution"))
22                 {
23                     Regex reg = new Regex(pattern);
24                     tmp.Data = reg.Replace(tmp.Data, "href=\"http://" + targetServer + "/");
25                     document.Save(file.FullName);
26                     break;
27                 }
28             }
29         }
30     }
31 
32     DirectoryInfo[] direcotries = info.GetDirectories();
33     foreach (DirectoryInfo directory in direcotries)
34     {
35         ReplaceReferenceUrl(directory.FullName, targetServer);
36     }

首先通過拉姆達運算式 找出所有ProcessingInstruction類型的節點,然後使用Regex替換href屬性的值(注意只替換了其中ServerName的部分)。後面的遞迴調用表示該方法允許修改指定目錄中所有的XML檔案。

在SharePoint中,很多地方使用InfoPath Form來收集XML資料檔案,當需要批量上傳InfoPath XML檔案時,修改檔案頭資訊是必要的步驟,通過上面的函數,我們可以很簡單地實現這一點!記錄一下,以方便日後查閱。 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.