使用 NSXMLParser 在 obj c 中将整数存储在 int 变量中

发布于 2024-11-03 13:25:06 字数 155 浏览 1 评论 0原文

大家好,

我正在做一个 iphone 项目,因为我需要从 xml 中获取一个 int 值,所以 我如何使用 NSXMLParser (通过解析 xml)将存储在 xml 中的整数值存储到 int 变量中(通过解析 xml)

任何人都可以给我一些例子,,,提前谢谢

hii every one

i am doing a iphone project in that i need to take a int value from xml so
how can i store a integer value which is stored in a xml, into a int variable using NSXMLParser (by parsing the xml)

can any one give me some examples,,, thanx in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一直在等你来 2024-11-10 13:25:06

这是一种方法(假设您已经知道如何使用 NSXMLParser)

xml:

<intVariable>10</intVariable>

code:

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string 
{
    if(!currentElementValue)
        currentElementValue = [[NSMutableString alloc] initWithString:string];
    else
        [currentElementValue appendString:string];
}

- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName
  namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName
    attributes:(NSDictionary *)attributeDict 
{
     if ([elementName isEqualToString:@"intVariable"])
        intVariable = [currentElementValue intValue];

     [currentElementValue release];
     currentElementValue = nil;
}

(currentElementValue 和 intVariable 分别是可变字符串和 int 成员)。

Here is one way (assuming you already know how to use NSXMLParser)

xml:

<intVariable>10</intVariable>

code:

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string 
{
    if(!currentElementValue)
        currentElementValue = [[NSMutableString alloc] initWithString:string];
    else
        [currentElementValue appendString:string];
}

- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName
  namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName
    attributes:(NSDictionary *)attributeDict 
{
     if ([elementName isEqualToString:@"intVariable"])
        intVariable = [currentElementValue intValue];

     [currentElementValue release];
     currentElementValue = nil;
}

(currentElementValue and intVariable are mutable string and int members respectively).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文