用Objective-C HTMLParser解析HTML文档

发布时间:2020-07-26 15:58:19 作者:wcrane
来源:网络 阅读:1048

代码:https://github.com/zootreeves/Objective-C-HMTL-Parser

?

戴维营教育代码
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
NSString *str = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://vip.astro.sina.com.cn/astro/view/aries/day/20140808"] encoding:NSUTF8StringEncoding error:nil];
     
    NSError *error;
     
    //预先步骤
    //1. 在工程中添加libxml2的库(Build Phase -> Link binary with libraries -> +)
    //2. 在Header Search Path中添加/usr/include/libxml2
     
    //解析HTML文档
    HTMLParser *parser = [[HTMLParser alloc] initWithString:str error:&error];
    if (error) {
        NSLog(@"%@", error);
        return;
    }
     
    //获取HTML的body部分
    HTMLNode *node = [parser body];
    //根据HTML节点的属性查找节点
    NSArray *tabs = [node findChildrenWithAttribute:@"class" matchingName:@"tab" allowPartial:YES];
    for (HTMLNode *n in tabs) {
        //根据节点名称查找子节点
        HTMLNode *h5 = [n findChildTag:@"h5"];
        HTMLNode *img = [n findChildTag:@"img"];
        HTMLNode *p = [n findChildTag:@"p"];
         
        //获取的属性值
        NSLog(@"%@", [img getAttributeNamed:@"src"]);
        //获取节点内容
        NSLog(@"%@: %@", [h5 contents], [p contents]);
    }


推荐阅读:
  1. Html的头部标签meta怎么用
  2. 东拼西凑用python脚本登录web管理页面做巡检(未实现)

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

include error 工程

上一篇:黑盒测试用例设计方法

下一篇:【Qt学习笔记】6.Qt中的字符、字符串

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》