32

如何从我的 C++ 程序中打开 URL?

在红宝石中你可以做

%x(open https://google.com)

C ++中的等价物是什么?我想知道是否有独立于平台的解决方案。但如果没有,我更喜欢 Unix/Mac :)

这是我的代码:

#include <stdio.h>
#include <string.h>
#include <fstream>

int main (int argc, char *argv[])
{
    char url[1000] = "https://www.google.com";

    std::fstream fs;
    fs.open(url);
    fs.close();

    return 0;
}
4

9 回答 9

50

Your question may mean two different things:

1.) Open a web page with a browser.

#include <windows.h>
#include <shellapi.h>
...
ShellExecute(0, 0, L"http://www.google.com", 0, 0 , SW_SHOW );

This should work, it opens the file with the associated program. Should open the browser, which is usually the default web browser.


2.) Get the code of a webpage and you will render it yourself or do some other thing. For this I recommend to read this or/and this.


I hope it's at least a little helpful.

EDIT: Did not notice, what you are asking for UNIX, this only work on Windows.

于 2013-06-27T16:13:18.453 回答
29

使用libcurl,这里是一个简单的例子

编辑:如果这是关于从 C++ 启动 Web 浏览器,您可以system在 POSIX 系统上调用 shell 命令:

system("<mybrowser> http://google.com");

通过替换<mybrowser>为您要启动的浏览器。

于 2013-06-27T16:06:04.583 回答
9

这是使用winsock的Windows代码示例。

#include <winsock2.h>
#include <windows.h>
#include <iostream>
#include <string>
#include <locale>
#pragma comment(lib,"ws2_32.lib")
using namespace std;

string website_HTML;
locale local;


void get_Website(char *url );

int main ()
{
    //open website
    get_Website("www.google.com" );

    //format website HTML
    for (size_t i=0; i<website_HTML.length(); ++i) 
        website_HTML[i]= tolower(website_HTML[i],local);

    //display HTML
    cout <<website_HTML;

    cout<<"\n\n";



    return 0;
}



//***************************
void get_Website(char *url )
{
    WSADATA wsaData;
    SOCKET Socket;
    SOCKADDR_IN SockAddr;


    int lineCount=0;
    int rowCount=0;

    struct hostent *host;
    char *get_http= new char[256];

        memset(get_http,' ', sizeof(get_http) );
        strcpy(get_http,"GET / HTTP/1.1\r\nHost: ");
        strcat(get_http,url);
        strcat(get_http,"\r\nConnection: close\r\n\r\n");

        if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0) 
        {
            cout << "WSAStartup failed.\n";
            system("pause");
            //return 1;
        }

        Socket=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
        host = gethostbyname(url);

        SockAddr.sin_port=htons(80);
        SockAddr.sin_family=AF_INET;
        SockAddr.sin_addr.s_addr = *((unsigned long*)host->h_addr);

        cout << "Connecting to "<< url<<" ...\n";

        if(connect(Socket,(SOCKADDR*)(&SockAddr),sizeof(SockAddr)) != 0)
        {
            cout << "Could not connect";
            system("pause");
            //return 1;
        }

        cout << "Connected.\n";     
        send(Socket,get_http, strlen(get_http),0 );

        char buffer[10000];

        int nDataLength;
            while ((nDataLength = recv(Socket,buffer,10000,0)) > 0)
            {       
                int i = 0;

                while (buffer[i] >= 32 || buffer[i] == '\n' || buffer[i] == '\r') 
                {                    
                    website_HTML+=buffer[i];                     
                    i += 1;
                }               
            }
        closesocket(Socket);
        WSACleanup();

            delete[] get_http;
}
于 2013-06-27T18:33:22.617 回答
5

我在 Windows 中遇到了完全相同的问题。

我注意到在OP's gist中,他string("open ")在第 21 行使用,但是,通过使用它会遇到这个错误:

'open' 未被识别为内部或外部命令

经过研究,我发现这open是MacOS打开东西的默认命令。在 Windows 或 Linux 上是不同的。

Linuxxdg-open <URL>

窗户start <URL>


对于像我一样使用 Windows 的人,您可以使用以下内容:

std::string op = std::string("start ").append(url);
system(op.c_str());
于 2020-02-14T11:58:37.583 回答
4

使用 ShellExecuteA() 时我的运气要好得多。我听说使用“system()”时存在很多安全风险。这是我为自己的代码提出的。

void SearchWeb( string word )
{    
    string base_URL = "http://www.bing.com/search?q=";
    string search_URL = "dummy";
    search_URL = base_URL + word;

    cout << "Searching for: \"" << word << "\"\n";

    ShellExecuteA(NULL, "open", search_URL.c_str(), NULL, NULL, SW_SHOWNORMAL);
}

ps 如果我是正确的,它使用 WinAPI。所以它不是多平台解决方案。

于 2014-06-02T17:33:06.623 回答
4

windows已经有了答案。在 linux 中,我注意到open https://www.google.com总是从 shell 启动浏览器,所以你可以尝试:

system("open https://your.domain/uri");

也就是说

system(("open "s + url).c_str()); // c++

https://linux.die.net/man/1/open

于 2018-01-07T05:12:38.663 回答
2

C不像您提到的脚本语言那样高级。但是,如果您想远离基于套接字的编程,请尝试使用 Curl。Curl 是一个很棒的 C 库,有很多特性。我已经使用了很多年并且总是推荐它。它还包括一些用于测试或外壳使用的独立程序。

于 2013-06-27T16:07:20.423 回答
2

对于 linux 环境,您可以使用xdg-open. 它默认安装在大多数发行版上。接受答案的好处是它打开了用户的首选浏览器。

$ xdg-open https://google.com
$ xdg-open steam://run/10

当然,您可以将其包装在system()电话中。

于 2020-01-09T09:01:41.813 回答
-4

使用 Software_Developer 已经提到的 winsock 创建一个函数并复制代码。

例如:

#ifdef _WIN32

// this is required only for windows

if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0)
{

  //...

}

#endif

winsock代码在这里

#ifdef _WIN32

WSACleanup();

#endif
于 2015-01-22T11:23:59.483 回答