libxml2 を使用して Safari の Web インスペクタのように、特定の DOM オブジェクトの DOM ツリーを取得するにはどうすればよいですか
user427754
質問する
265 次
1 に答える
3
このサンプルコードを使用すると、TAGをリクエストでき、HTMLに存在する場合、プログラムはそれをダンプします(ここでは、stackoverflowからheadタグを使用しました。コードではlibcurl
、HTMLバッファーを取得するために使用する必要がある場合があります)。
/* Compile like this :
* gcc -Wall html_dom_dump.c -o html_dom_dump `xml2-config --cflags` `xml2-config --libs`
*/
#include <stdio.h>
#include <libxml/HTMLparser.h>
#include <libxml/tree.h>
#include <stdlib.h>
char stackoverflow_html_head[] = "<head>\
<title>Stack Overflow</title>\
<link rel=\"shortcut icon\" href=\"http://cdn.sstatic.net/stackoverflow/img/favicon.ico\">\
<link rel=\"apple-touch-icon\" href=\"http://cdn.sstatic.net/stackoverflow/img/apple-touch-icon.png\">\
<link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Stack Overflow\" href=\"/opensearch.xml\">\
\
\
StackExchange.init({\"stackAuthUrl\":\"https://stackauth.com\",\"serverTime\":1345183802,\"styleCode\":true,\"enableUserHovercards\":true,\"site\":{\"name\":\"Stack Overflow\",\"description\":\"Q\\u0026A for professional and enthusiast programmers\",\"isNoticesTabEnabled\":true,\"newTitleSearchBoxEnabled\":false,\"enableSocialMediaInSharePopup\":true},\"user\":{\"isAnonymous\":true,\"fkey\":\"52eb3bfedea6eccd9936d40e8ca0c8de\",\"notificationsUnviewedCount\":0,\"inboxUnviewedCount\":-1}}); StackExchange.using.setCacheBreakers({\"js/prettify-full.js\":\"d1cd9a23171c\",\"js/moderator.js\":\"8c49fc268737\",\"js/full-anon.js\":\"945170d238e3\",\"js/full.js\":\"c60de8021771\",\"js/wmd.js\":\"93b92575f8bc\",\"js/third-party/jquery.autocomplete.min.js\":\"e5f01e97f7c3\",\"js/mobile.js\":\"6eb68240242f\",\"js/help.js\":\"fc9fb0517db2\",\"js/tageditor.js\":\"c1ba807b32aa\",\"js/tageditornew.js\":\"bd66fabe1c71\",\"js/inline-tag-editing.js\":\"be882e188985\",\"js/revisions.js\":\"8c6bcd93b7fe\",\"js/suggested-edits.js\":\"46c4696efca5\",\"js/probes.js\":\"beb933322ff0\",\"js/review.js\":\"fca067ef962b\"});\
</script>\
\
</head>";
int found = 0;
int walk_tree(xmlNode *node, xmlDocPtr doc, char *pattern)
{
xmlNode *cur_node = NULL;
for (cur_node = node; cur_node; cur_node = cur_node->next)
{
if ((!xmlStrcmp(cur_node->name, (const xmlChar *)pattern)))
{
found++;
fprintf(stdout, "\n----> WE GOT IT\n\n");
xmlElemDump(stdout, doc, cur_node);
fprintf(stdout, "\n<----\n");
}
walk_tree(cur_node->children, doc, pattern);
}
return found;
}
int main(int argc, char **argv)
{
int ret;
/* Create a parser context*/
htmlParserCtxtPtr html_parser = htmlCreatePushParserCtxt(NULL, NULL, NULL, 0, NULL, 0);
if (argc != 2)
{
fprintf(stderr, "Usage : ./html_dom_dump TAG");
exit(EXIT_FAILURE);
}
/* remove blank nodes
* suppress error reports
* suppress warning reports
* Forbid network access
* more on this options: http://xmlsoft.org/html/libxml-HTMLparser.html#htmlParserOption
*/
htmlCtxtUseOptions(html_parser, HTML_PARSE_NOBLANKS | HTML_PARSE_NOERROR | HTML_PARSE_NOWARNING | HTML_PARSE_NONET);
/* parsing our stackoverflow html header */
htmlParseChunk(html_parser, stackoverflow_html_head, sizeof(stackoverflow_html_head), 0);
/* Traverse all the tree to find the given TAG (pattern) */
ret = walk_tree(xmlDocGetRootElement(html_parser->myDoc), html_parser->myDoc, argv[1]);
if (!ret)
fprintf(stdout, "No luck, this tag does not exit!\n");
return 0;
}
コンパイルしてlibxml2とリンクします。
gcc -Wall html_dom_dump.c -o html_dom_dump `xml2-config --cflags` `xml2-config --libs`
そして、あなたはそれをこのように実行することができます:
toc@UnixServer:~$ ./html_dom_dump head
----> WE GOT IT
<head>
<title>Stack Overflow</title>
<link rel="shortcut icon" href="http://cdn.sstatic.net/stackoverflow/img/favicon.ico">
<link rel="apple-touch-icon" href="http://cdn.sstatic.net/stackoverflow/img/apple-touch-icon.png">
<link rel="search" type="application/opensearchdescription+xml" title="Stack Overflow" href="/opensearch.xml">
</head>
<----
toc@UnixServer:~$ ./html_dom_dump link
----> WE GOT IT
<link rel="shortcut icon" href="http://cdn.sstatic.net/stackoverflow/img/favicon.ico">
<----
----> WE GOT IT
<link rel="apple-touch-icon" href="http://cdn.sstatic.net/stackoverflow/img/apple-touch-icon.png">
<----
----> WE GOT IT
<link rel="search" type="application/opensearchdescription+xml" title="Stack Overflow" href="/opensearch.xml">
<----
toc@UnixServer:~$ ./html_dom_dump TAG
No luck, this tag does not exit!
わからない場合はlibcurl + LibTidy
、HTMLの取得と解析にも使用できます:http:
//curl.haxx.se/libcurl/c/htmltidy.html
于 2012-08-17T07:40:49.400 に答える