首页 > 代码库 > 浏览器插件获取网页内容
浏览器插件获取网页内容
void GetHtmlContent() { //m_Explorer HRESULT hr; LPDISPATCH pDisp; IHTMLDocument2* phd;//IHtmlDocument2接口指针 IHTMLElement* pBody;//网页中的元素 pDisp = m_Explorer.get_Document(); hr = pDisp->QueryInterface(IID_IHTMLDocument2, (LPVOID*)&phd); pDisp->Release(); if (SUCCEEDED(hr)) { BSTR bstrText; hr = phd->get_body(&pBody); //BODY if (SUCCEEDED(hr)) { hr = pBody->get_innerText(&bstrText); if (SUCCEEDED(hr)) { //PrintBSTR(bstrText); // 处理得到的文本 char* lpszText2 = _com_util::ConvertBSTRToString(bstrText); g_Log.print(LogLevel_Info,"[info] GetHtmlContent:%s.\n",lpszText2); SysFreeString(bstrText); //AfxMessageBox("获取成功"); } } SysFreeString(bstrText); } phd->Release(); pBody->Release(); }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。