如何从我的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;
}
答案 0 :(得分:19)
你的问题可能意味着两件事。 1)用浏览器打开网页。
ShellExecute(0, 0, L"http://www.google.com", 0, 0 , SW_SHOW );
这应该有效,它会打开带有相关程序的文件。应该打开浏览器,通常是默认的。 2)获取网页代码,您将自己渲染或做其他事情。为此,我想阅读this或/和this
我希望它至少有一点帮助。
编辑:没有注意到,你要求UNIX,这只适用于Windows。
答案 1 :(得分:17)
编辑:如果这是关于从C ++启动Web浏览器,您可以在POSIX系统上调用带有system
的shell命令:
system("<mybrowser> http://google.com");
将<mybrowser>
替换为您要启动的浏览器。
答案 2 :(得分:5)
以下是使用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;
}
答案 3 :(得分:3)
C不像你提到的脚本语言那么高级。但是,如果您想远离基于套接字的编程,请尝试使用Curl。 Curl是一个很棒的C库,具有许多功能。我已经使用了多年,总是推荐它。它还包括一些独立的测试或shell使用程序。
答案 4 :(得分:2)
我在Windows中遇到了完全相同的问题。
我注意到在OP's gist中,他在第21行中使用了string("open ")
,但是,通过使用它,遇到了这个错误:
'open'不被识别为内部或外部命令
研究后,我发现open
是MacOS打开事物的默认命令。在Windows或Linux上是不同的。
Linux :xdg-open <URL>
Windows :start <URL>
对于正在使用Windows的用户,可以使用以下命令:
std::string op = std::string("start ").append(url);
system(op.c_str());
答案 5 :(得分:1)
已经有了Windows的答案。在linux中,我注意到open https://www.google.com
始终从shell启动浏览器,因此您可以尝试:
system("open https://your.domain/uri");
就是说
system(("open "s + url).c_str()); // c++
答案 6 :(得分:1)
对于Linux环境,您可以使用console.log(undefined ?? 'default') //default
console.log(null ?? 'default') //default
。默认情况下,它已安装在大多数发行版上。相对于接受的答案的好处是,它可以打开用户首选的浏览器。
xdg-open
您当然可以将其包装在$ xdg-open https://google.com
$ xdg-open steam://run/10
调用中。
答案 7 :(得分:0)
我使用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);
}
P.S。如果我是正确的,它使用WinAPI。所以它不是多平台解决方案。
答案 8 :(得分:-3)
使用winsock创建一个函数并复制代码,这已经由Software_Developer提到。
对于实例:
#ifdef _WIN32
// this is required only for windows
if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0)
{
//...
}
#endif
此处为winsock代码
#ifdef _WIN32
WSACleanup();
#endif