xmltextreader

    0熱度

    1回答

    我的XML文件是這樣的test.xml: <?xml version="1.0" encoding="utf-8" ?> <Message> <Item Name ="msg1" Status ="false"/> <Item Name="msg2" Status="false"/> </Message> System.Xml.XmlTextReader textReade

    1熱度

    1回答

    我有一大塊XML數據,我需要「乾淨」。在XML看起來是這樣的: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"> <w:body> <w:p>

    0熱度

    1回答

    我想加載使用XmlTextReader的XML內容,但由於某種原因,XmlTextReader在處理Xml時忽略DtdProcessing標誌。 DtdProcessing標誌工作正常,如果我使用XmlReader來代替。 XmlReader的問題在於,它會自動將\ r \ n \ n \ n規範化爲我不希望在輸出字符串中的\ n。 這裏是我的代碼片段: XmlDocument xmlDocume

    0熱度

    1回答

    考慮xml文件的部分。 <Element>Value</Element> 我用XmlTextReader讀取xml文件。所以我用while(reader.Read()) 現在當我達到Element我想要得到它的價值。 if(reader.NodeType == XmlNodeType.Element && reader.LocalName == "Element") { reade

    1熱度

    1回答

    我新ti XML和我掙扎着一些基本知識。 我有一個XmlTextReader的,通過一個文件上寫着: <node guid="e7071d4d-21b0-48c0-b803-daf202998633" tag="3DMesh" imageindex="1" text="body__6557_0"/> <node guid="3bc0240f-cdf4-4e09-94de-a52d7bc0c4b

    -2熱度

    1回答

    我有這樣的代碼從WinForms應用程序調用Web API的應用程序工作正常(它成功地複製XML文件到服務器): public static string SendXMLFile(string xmlFilepath, string uri, int timeout) { HttpWebRequest request = (HttpWebRequest)WebRequest.Creat

    1熱度

    1回答

    我試圖做一個循環,讀取具有特定ID號的項目的XML文檔,然後將此項目的子節點存儲爲變量,然後用它來填充我的頁面上的標籤。 Sub LinkButton_Click(sender As Object, e As CommandEventArgs) Dim selected = Convert.ToInt32(e.CommandArgument) System.Diagnostic

    0熱度

    1回答

    使用XmlTextReader讀取XML文件時出現錯誤。首先,該URL是正常的,但第二個URL失敗。使用其他網址是正常的。只有這個網址有錯誤。 Dim url As String 'url = "http://test.damiedu.net/testxml.xml" 'url = "http://www.hrd.go.kr/hrdp/api/apiao/APIAO0101T

    0熱度

    2回答

    我試圖解析XML RSS提要需要的日期從這個轉變中的一個元素: <lastBuildDate>Thu, 13 Apr 2017</lastBuildDate> 這樣: <lastBuildDate>Thu, 13 Apr 2017 09:00:52 +0000</lastBuildDate> 我能弄個具有以下代碼的lastBuildDate元素 XmlTextReader reader = new

    1熱度

    1回答

    我正在使用libxml ++來分析一個相當大的XML文件,因此無法使用DOM。 說我有一個XML文件,如: <?xml version="1.0"?> <root> <book name="book1"> <chapter name="chapter1"> #Pages </chapter> <chapter name="chapter2"