gpt4 book ai didi

iphone - 如何使用libxml解析解析xml数据

转载 作者:可可西里 更新时间:2023-11-01 03:31:24 24 4
gpt4 key购买 nike

这是我要使用 libxml 解析来解析的 xml 结构。

enter image description here

enter image description here

如何获取“campaign”标签的属性值,即 ID 和“image”标签的属性值,即 urlsize

如果我使用这些值,我可以提取“code”标签和“name”标签的值。

static const char *kName_campaign = "campaign";
static const NSUInteger kLength_campaign = 9;
static const char *kName_code = "code";
static const NSUInteger kLength_code = 5;
static const char *kName_name = "name";
static const NSUInteger kLength_name = 5;

然后我得到当前和即将进行的事件的代码和名称。这是我在解析完成时调用的委托(delegate)中使用的代码。

static void endElementSAX(void *ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI)
{
LibXMLParser *parser = (LibXMLParser *)ctx;

if (parser.parsingASong == NO) return;

if (prefix == NULL)
{
if (!strncmp((const char *)localname, kName_campaign, kLength_campaign))
{
[parser finishedCurrentSong];
parser.parsingASong = NO;
}
else if (!strncmp((const char *)localname, kName_code, kLength_code))
{
parser.currentSong.title = [parser currentString];
NSLog(@"Code :: %@",[parser currentString]);
}
else if (!strncmp((const char *)localname, kName_name, kLength_name))
{
parser.currentSong.category = [parser currentString];
NSLog(@"Name :: %@",[parser currentString]);
}
}
}

如何从“campaign”标签中获取 id 从头到尾的属性值。 urlsize 来自“图片”标签?

最佳答案

static void startElementSAX(void *ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes,
int nb_defaulted, const xmlChar **attributes)
{

if (nb_attributes > 0)
{
NSMutableDictionary* attributeDict = [NSMutableDictionary dictionaryWithCapacity:(NSUInteger)[NSNumber numberWithInt:nb_attributes]];
for (int i=0; i<nb_attributes; i++)
{
NSString* key = [NSString stringWithCString:(const char*)attributes[0] encoding:NSUTF8StringEncoding];
NSString* val = [[NSString alloc] initWithBytes:(const void*)attributes[3] length:(attributes[4] - attributes[3]) encoding:NSUTF8StringEncoding];
attributes += 5;

[attributeDict setValue:val forKey:key];
}
}
}

试试这个..

关于iphone - 如何使用libxml解析解析xml数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10799423/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com