ios - 使用 GDataXML 获取 XML 响应值
<p><p>在 HTTP Post 之后,我检索到一个 xml 响应,如下所示:</p>
<pre><code><result value="OK">
<user id="1">
<name>admin</name>
<rank>0</rank>
<picture_count>0</picture_count>
<comment_count>0</comment_count>
<has_profile>1</has_profile>
</user>
</result>
</code></pre>
<p>我想提取用户 ID,但我不知道该怎么做。
我尝试使用 <code>GDataXML</code> Parser,因为它已经集成在我的项目中,但是
我不知道如何在 html 标签中获取值。</p>
<p>我希望你能帮助我。如果 <code>XMLParser</code> 没有解决方案,你会推荐正则表达式吗?在这种情况下,我会很感激正则表达式的解决方案,我不太擅长这个:)</p>
<p>提前致谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这是我用来检索用户属性的代码。它有效。</p>
<pre><code>NSString* path = [ pathForResource:@"test" ofType:@"xml"];
NSData *xmlData = [ initWithContentsOfFile:path];
NSError *error;
GDataXMLDocument *doc = [ initWithData:xmlData
options:0 error:&error];
NSArray *userElements = ;
for (GDataXMLElement *userEl in userElements) {
// Attribute
NSString *attribute = [(GDataXMLElement *) stringValue];
NSLog(@"attribute for user is %@", attribute);
// Name
NSArray *names = ;
if (names.count > 0) {
GDataXMLElement *name = (GDataXMLElement *) ;
NSLog(@"name for user is %@", name.stringValue);
}
// Rank
NSArray *ranks = ;
if (ranks.count > 0) {
GDataXMLElement *rank = (GDataXMLElement *) ;
NSLog(@"rank for user is %@", rank.stringValue);
}
// Do the same for other tags...
}
;
;
</code></pre>
<p>文件 test.xml 与您从 xml 响应中检索到的文件相同。所以你需要改变这段代码的第二行。也许你可以调用 <code>NSData</code> 类的 <code>initWithData</code> 方法。</p>
<p>您可以将此代码放在您想要的位置。也许您可以创建另一个作为集中式解析器的类。希望对你有帮助</p>
<p><strong>编辑</strong></p>
<p>将这两行放在前面作为说明。</p>
<pre><code>NSString *valAttribute = [(GDataXMLElement *) stringValue];
NSLog(@"value attribute for result is %@", valAttribute);
</code></pre>
<p>解释很简单。使用 <code>doc.rootElement</code> 您可以检索整个 xml 文档,从 <code><result></code> 到 <code></result></code></p></p>
<p style="font-size: 20px;">关于ios - 使用 GDataXML 获取 XML 响应值,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8741698/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8741698/
</a>
</p>
页:
[1]