xml_example() ->
Options=[{space,normalize},{encoding,"utf-8"}],
Str=”<root title=’test’><person id=’oscar’ gender=’m'>Oscar Tang</person>
<person id=’jojo’ gender=’f'>JoJo Zhou</person></root>”,
{Xml,_}=xmerl_scan:string(Str,Options),
xmerl_lib:simplify_element(Xml).
上述函数运行在我机上大约耗时230微秒(绝大部分耗在xmerl_scan:string函数上),即每秒可以将超过4000个XML数据从字符串转换成如下数据结构:
{root,[{title,"test"}],[
{person,[{id,"oscar"},{gender,"m"}],["Oscar Tang"]},
{person,[{id,"jojo"},{gender,"f"}],["JoJo Zhou"]}
]}
返回数据的一般结构为:
{node_name,[attributes],[children]}
0 意見