现在的位置: 首页 > 综合 > 正文

iOS下超级简洁的xml解析框架:TBXML

2018年05月25日 ⁄ 综合 ⁄ 共 3536字 ⁄ 字号 评论关闭

就xml解析来讲,目前用过的最简洁,速度最快的当属tbxml,是基于C框架的所以直接拿在iPhone上用了。

先说下用法,把tbxml的4个文件拖入class,然后为工程添加libz.dylib框架即可。

废话就不说了,直接看代码,如下:

定义了两个方法(其中一个带着递归子方法),分别处理已知结构和未知结构的xml。

//调用

- (void)viewDidLoad {
tbXml = [TBXML tbxmlWithXMLFile:@"books.xml"];

TBXML *tbXml2 = [TBXML tbxmlWithXMLString:@"<root><elem1 attribute1="elem1-attribute1"/><elem2 attribute2="attribute2"/></root>"];
TBXML *tbXml3 = [[TBXML alloc] initWithURL:[NSURL URLWithString:@"http://www.ifanr.com/feed"]];

[self testTBXM:tbXml];
[self dealUnknow:tbXml3];

[super viewDidLoad];
}

1.解析已知结构的xml。先看下xml的基本结构:

<?xml version=”1.0″?>
<authors>
<author name=”J.K. Rowling”>
<book title=”Harry Potter and the Philosopher’s Stone” price=”119.99″>
<description>
Harry potter thinks he is an ordinary boy - until he is rescued from a beetle-eyed giant of a man, enrolls at Hogwarts School of Witchcraft and Wizardry, learns to play quidditch and does battle in a deadly duel.
</description>
</book>
<book title=”Harry Potter and the Chamber of Secrets” price=”8.99″>
<description>
When the Chamber of Secrets is opened again at the Hogwarts School for Witchcraft and Wizardry, second-year student Harry Potter finds himself in danger from a dark power that has once more been released on the school.
</description>
</book>
<book title=”Harry Potter and the Prisoner of Azkaban” price=”12.99″>
<description>
Harry Potter, along with his friends, Ron and Hermione, is about to start his third year at Hogwarts School of Witchcraft and Wizardry. Harry can’t wait to get back to school after the summer holidays. (Who wouldn’t if they lived with the horrible Dursleys?)
But when Harry gets to Hogwarts, the atmosphere is tense. There’s an escaped mass murderer on the the loose, and the sinister prison guards of Azkaban have been called in to guard the school.
</description>
</book>
</author>
<author name=”Douglas Adams”>
<book title=”The Hitchhiker’s Guide to the Galaxy” price=”15.49″>
<description>
Join Douglas Adams’s hapless hero Arthur Dent as he travels the galaxy with his intrepid pal Ford Prefect, getting into horrible messes and generally wreaking hilarious havoc.
</description>
</book>
<book title=”The Restaurant at the End of the Universe ” price=”14.36″>
<description>
Arthur and Ford, having survived the destruction of Earth by surreptitiously hitching a ride on a Vogon constructor ship, have been kicked off that ship by its commander. Now they find themselves aboard a stolen Improbability Drive ship commanded by Beeblebrox,
ex-president of the Imperial Galactic Government and full-time thief.
</description>
</book>
</author>
</authors>

//解析代码

- (void)testTBXM:(TBXML *)tbx {
TBXMLElement *root = tbx.rootXMLElement;
TBXMLElement *author = [TBXML childElementNamed:@"author" parentElement:root];
NSString *name = [TBXML valueOfAttributeNamed:@"name" forElement:author];
NSLog(@”author:%@”, name);
TBXMLElement *book = [TBXML childElementNamed:@"book" parentElement:author];
TBXMLElement *descriptionElem = [TBXML childElementNamed:@"description" parentElement:book];
NSString * description = [TBXML textForElement:descriptionElem];
NSLog(@”author:%@”, description);
}

2.递归解析未知结构的xml。

//主调用方法

- (void)dealUnknow:(TBXML *)tbx {
if (tbx.rootXMLElement) {
TBXMLElement *element = tbx.rootXMLElement;
[self recurrence:element];
}
else {
NSLog(@”Format Error!”);
}
}

//递归子方法

- (void)recurrence:(TBXMLElement *)element {
do {

NSLog(@”<%@>:{%@}”,[TBXML elementName:element], [TBXML textForElement:element]);// Display the name of the element

//迭代处理所有属性
TBXMLAttribute * attribute = element->firstAttribute;
while (attribute) {
//显示
NSLog(@”<%@>->[%@ = %@]“, [TBXML elementName:element], [TBXML attributeName:attribute], [TBXML attributeValue:attribute]);
//迭代
attribute = attribute->next;
}

//递归处理子树
if (element->firstChild) {
[self recurrence:element->firstChild];
}

//迭代处理兄弟树
} while ((element = element->nextSibling));
}

总之,tbxml解析xml飞速、简洁,可惜不能操作回写,仅陷于解析,做rss巨合适不过了!

具体的api参见tbxml_api:http://pimacun.72pines.com/2010/12/31/tbxml_api/

【上篇】
【下篇】

抱歉!评论已关闭.