我有两个加载一个XML文件的选项。在第一个我使用本地XML文件,我可以加载文件没有问题,但在第二个我使用我从Web服务获得的XML文件,格式在前两行不同,我不能加载文件。
文件如下所示:
本地文件:
<?xml version="1.0" encoding="utf-8"?>
...Here goes the content
Web服务文件:
This XML file does not appear to have any style information associated with it. The document tree is shown below.
<string xmlns="http://direcction/here/">
<?xml version="1.0" encoding="utf-8"?>
...Here goes the content
因此,当我加载XML时,如何忽略“This XML file ...”行和<string>
标记?因为我认为这就是问题所在。
提前致谢。