Questions tagged «xml-parsing»

XML解析器遍历包含XML树的文本文档,并允许使用层次结构中的信息。使用此标记可解决实现XML解析器或通过使用给定语言使用现有解析器生成的问题。


11
xml.LoadData-根级别的数据无效。1号线,位置1
我正在尝试在WiX安装程序中解析一些XML。XML将是我从Web服务器返回的所有错误的对象。我收到以下代码的问题标题中的错误: XmlDocument xml = new XmlDocument(); try { xml.LoadXml(myString); } catch (Exception ex) { System.IO.File.WriteAllText(@"C:\text.txt", myString + "\r\n\r\n" + ex.Message); throw ex; } myString这是(如的输出所示text.txt) <?xml version="1.0" encoding="utf-8"?> <Errors></Errors> text.txt 看起来像这样: <?xml version="1.0" encoding="utf-8"?> <Errors></Errors> Data at the root level is invalid. Line 1, position 1. 我需要解析该XML,以便查看是否有任何错误。 编辑 此问题不是标记的重复项。在那个问题中,提出问题的人正在使用它LoadXml来解析XML文件。我正在解析一个字符串,这是正确的用法LoadXml
76 c#  xml  xml-parsing  wix 

7
UnicodeEncodeError:'ascii'编解码器无法在位置0编码字符u'\ xef':序数不在范围内(128)
我想解析我的XML文档。所以我将我的XML文档存储如下 class XMLdocs(db.Expando): id = db.IntegerProperty() name=db.StringProperty() content=db.BlobProperty() 现在我的下面是我的代码 parser = make_parser() curHandler = BasketBallHandler() parser.setContentHandler(curHandler) for q in XMLdocs.all(): parser.parse(StringIO.StringIO(q.content)) 我低于错误 'ascii' codec can't encode character u'\xef' in position 0: ordinal not in range(128) Traceback (most recent call last): File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/__init__.py", line 517, in __call__ handler.post(*groups) File "/base/data/home/apps/parsepython/1.348669006354245654/mapreduce/base_handler.py", line …

8
如何使用VBA解析XML
我在VBA中工作,并且想解析一个字符串,例如 <PointN xsi:type='typens:PointN' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xs='http://www.w3.org/2001/XMLSchema'> <X>24.365</X> <Y>78.63</Y> </PointN> 并将X和Y值分成两个单独的整数变量。 在XML方面,我是一个新手,因为我从事的领域很有限,所以我一直停留在VB6和VBA中。 我该怎么做呢?
74 xml  vba  parsing  xml-parsing 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.