如何在 c++ 中获取浏览器地址栏的内容

How can I grab the contents of a browsers address bar in c++?

本文关键字:地址栏 浏览器 获取 c++      更新时间:2023-10-16

如果是 C++ 中的 Web 浏览器,我需要抓取活动 Windows 地址栏的内容。 我已经想出了如何抓取标题,并且可以抓取记事本的内容,但我被困在浏览器上。

我的目标是为IE,Chrome和Firefox提供这项工作。 如果这需要不同的方法,我会让程序尝试每一个,直到一个返回数据。

这是我到目前为止所拥有的:

    HWND foreground = GetForegroundWindow();
    HWND hwndEdit = FindWindowEx(foreground, NULL, "EDIT", NULL);
    const int bufferSize = 5024;
    char textBuffer[bufferSize] = "";
    SendMessage(hwndEdit, WM_GETTEXT, (WPARAM)bufferSize, (LPARAM)textBuffer);
    cout << textBuffer;

适用于IE实例的另一种工作方法:

#include <stdio.h>
#include <wchar.h>
#include <Windows.h>
#include <Exdisp.h>
//This imports the shell extionsions
//we disable warnings of multiple defines
#pragma warning(disable: 4192)
#pragma warning(disable: 4146)
#import <mshtml.tlb>
#import <shdocvw.dll>
void PrintBrowserInfo(IWebBrowser2 *pBrowser) {
    //These functions return Unicode strings.
    BSTR bstr;
    //Get the window title
    pBrowser->get_LocationName(&bstr);
    wprintf(L"Title: %sn", bstr);
    SysFreeString(bstr);
    //Detect if this is Windows Explorer (My Computer) or Internet Explorer (the internet)
    IDispatchPtr spDisp;
    char *type = "Windows Explorer";
    if (pBrowser->get_Document(&spDisp) == S_OK && spDisp != NULL) {
        MSHTML::IHTMLDocument2Ptr spHtmlDocument(spDisp);
        if (spHtmlDocument != NULL) {
            MSHTML::IHTMLElementPtr spHtmlElement;
            spHtmlDocument->get_body(&spHtmlElement);
            if (spHtmlElement != NULL) {
                type = "Internet Explorer";
            }
        }
        spDisp.Release();
    }
    printf(" Type: %sn", type);
    //Get the URL of the folder or web page
    pBrowser->get_LocationURL(&bstr);
    wprintf(L"  URL: %snn", bstr);
    SysFreeString(bstr);
}
int main() {
    CoInitialize(NULL); //We need COM
    SHDocVw::IShellWindowsPtr spSHWinds;
    IDispatchPtr spDisp;
    //Find all explorer (Windows and Internet) and list them
    if (spSHWinds.CreateInstance(__uuidof(SHDocVw::ShellWindows)) == S_OK) {
        long nCount = spSHWinds->GetCount();
        for (long i = 0; i < nCount; i++) {
            _variant_t va(i, VT_I4);
            spDisp = spSHWinds->Item(va);
            SHDocVw::IWebBrowser2Ptr spBrowser(spDisp);
            if (spBrowser != NULL) {
                //spBrowser->AddRef();
                PrintBrowserInfo((IWebBrowser2 *)spBrowser.GetInterfacePtr());
                spBrowser.Release();
            }
        }
    } else {
        puts("Shell windows failed to initialise");
    }
    system("PAUSE");
    return 0;
}

所以看起来我为IE工作,仍然在FireFox和Chrome上工作。

这是IE的代码

    HWND foreground = GetForegroundWindow();
    HWND hwndEdit = FindWindowEx(foreground, NULL, "EDIT", NULL);
    HWND handle = FindWindowEx(foreground, NULL, "WorkerW", "Navigation Bar");
    if (NULL != handle)
    {
    handle = FindWindowEx(handle, NULL, "ReBarWindow32", NULL);
    if (NULL != handle)
    {
    handle = FindWindowEx(handle, NULL, "Address Band Root", NULL);
    }}
    HWND hwndEdit = FindWindowEx(handle, NULL, "Edit", NULL);
    const int bufferSize = 5024;
    Char textBuffer[bufferSize] = "";
    SendMessage(hwndEdit, WM_GETTEXT, (WPARAM)bufferSize, (LPARAM)textBuffer);
    string addressbartext = textBuffer;
    if(addressbartext == "AutoCompleteProxy")
    {addressbartext = "";}
    else
    {addressbartext = textBuffer;
    }
    cout << addressbartext;

请参阅:检查访问了哪个网站,但如果找到更好的解决方案,请告诉我,尤其是对于 Chrome。