浏览器插件获取网页内容

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-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。