xmllint命令处理xml与html
xmllint是一个很方便的处理及验证xml、处理html的工具,linux下只要安装libxml2就可以使用这个命令。首先看下其结合–html 、–xpath参数处理html时的例子:
1curl http://www.123cha.com/ip/?q=8.8.8.8 2>/dev/null | xmllint --html --xpath "//ul[@id='csstb']" - 2>/dev/null | sed -e 's/<[^>]*>//g'
上例中主要是通过在123cha上查询的IP地址的归属情况后,通过提取结果(ul#csstb),只获取文本部分的内容。上面的脚本语句执行后的结果如下:
1[您的查询]:8.8.8.8
2本站主数据:
3美国
4本站辅数据:Google Public DNS提供:hypo
5美国 Google免费的Google Public DNS提供:zwstar参考数据一:美国
6参考数据二:美国
下面再结合示例看下其他主要参数的用法。
1、 –format
此参数用于格式化xml,使其具有良好的可读性。假设有xml(person.xml)内容如下:
1<person><name>ball</name><age>30</age><sex>male</sex></person>
执行如下操作后其输出为更易读的xml格式:
1#xmllint --format person.xml
2 <?xml version="1.0"?>
3 <person>
4 <name>ball</name>
5 <age>30</age>
6 <sex>male</sex>
7 </person>
2、 –noblanks
与–format相反,有时为了节省传输量,我们希望去掉xml中的空白,这时我们可以使用–noblanks命令。 假设xml(person.xml)内容如下
1<?xml version="1.0"?>
2 <person>
3 <name>ball</name>
4 <age>30</age>
5 <sex>male</sex>
6 </person>
执行该参数操作后,其输出结果为:
1#xmllint --noblanks person.xml
2 <?xml version="1.0"?>
3 <person><name>ball</name><age>30</age><sex>male</sex></person>
3、–scheam
使用scheam验证xml文件的正确性(XML Schema 是基于 XML 的 DTD 替代者) 假设有xml文件(person.xml)和scheam文件(person.xsd)文件,内容分别如下
1person.xml
2<?xml version="1.0"?>
3 <person>
4 <name>ball</name>
5 <age>30</age>
6 <sex>male</sex>
7 </person>
8
9person.xsd
10<?xml version="1.0"?>
11 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
12 <xs:element name="name" type="xs:string"/>
13 <xs:element name="age" type="xs:integer"/>
14 <xs:element name="sex">
15 <xs:simpleType>
16 <xs:restriction base="xs:string">
17 <xs:enumeration value="male"/>
18 <xs:enumeration value="female"/>
19 </xs:restriction>
20 </xs:simpleType>
21 </xs:element>
22 <xs:element name="person">
23 <xs:complexType>
24 <xs:all>
25 <xs:element ref="name"/>
26 <xs:element ref="age"/>
27 <xs:element ref="sex"/>
28 </xs:all>
29 </xs:complexType>
30 </xs:element>
31 </xs:schema>
按如下命令执行后的结果是:
1#xmllint --schema person.xsd person.xml
2 <?xml version="1.0"?>
3 <person>
4 <name>ball</name>
5 <age>30</age>
6 <sex>male</sex>
7 </person>
8 person.xml validates
注:默认情况下,验证后会输出验证的文件内容,可以使用 –noout选项去掉此输出,这样我们可以只得到最后的验证结果。
1#xmllint --noout --schema person.xsd person.xml
2person.xml validates
下面我们改动person.xml,使这份文件age字段和sex都是不符合xsd定义的。
1#xmllint --noout --schema person.xsd person.xml
2person.xml:4: element age: Schemas validity error : Element 'age': 'not age' is not a valid value of the atomic type 'xs:integer'.
3person.xml:5: element sex: Schemas validity error : Element 'sex': [facet 'enumeration'] The value 'test' is not an element of the set {'male', 'female'}.
4person.xml:5: element sex: Schemas validity error : Element 'sex': 'test' is not a valid value of the local atomic type.
5person.xml fails to validate
可以看到xmllint成功的报出了错误!
4、 关于–schema的输出
在讲输出之前先看下面一个场景,假如你想通过php执行xmllint然后拿到返回结果,你的代码通常应该是这个样子valid.php
1<?php
2 $command = "xmllint --noout --schema person.xsd person.xml";
3 exec($command, $output, $retval);
4 //出错时返回值不为0
5 if ($retval != 0){
6 var_dump($output);
7 }
8 else{
9 echo "yeah!";
10 }
我们保持上文中person.xml的错误。执行此代码,你会发现,你拿到的output不是错误,而是array(0) {}, amazing!为什么会这样呢?
因为xmllint –schema,如果验证出错误,错误信息并不是通过标准输出(stdout)显示的,而是通过标准错误(stderr)进行显示的。而exec的output参数拿到的,只能是标准输出(stdout)显示的内容。所以,为了拿到出错信息,我们需要将标准错误重定向到标准输出,对应修改代码:
1$command = "xmllint --noout --schema person.xsd person.xml 2>$1";
再次执行valid.php,错误信息顺利拿到!
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/xmllint-html-xml/3048.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.