C++中输入指定网址,然后用IE浏览器打开

2024-12-02 09:10:42
推荐回答(5个)
回答1:

#include 
#include 
#include 
using namespace std;
int main()
{
//由zjh20195原创禁止抄袭代码
char a[101];
string as;
cin>>as;
for(int i=0;i ShellExecute(NULL, _T("open"), _T(a), NULL, NULL, SW_SHOWNORMAL);
return 0;
}

一定要采纳我好不容易才弄好的

楼下均有BUG

回答2:

#include
#include
using namespace std;

int main()
{
wchar_t url[128];
wcin>>url;
//不指定浏览器,用系统缺省的浏览器打开不是更好吗?
ShellExecute(0, L"open", L"",url, NULL, SW_SHOW);
system("pause");
return 0;
}

回答3:

为什么不能填字符串,我刚试了一下,我的可以填字符串啊。。。

(我的编译器的原因,用的是宽字符,应该无所谓。)

#include
#include
using namespace std;

int main()
{
wchar_t url[128];
wcin>>url;
ShellExecute(0, L"open", L"C:\\Program Files\\Internet Explorer\\iexplore.exe",url, NULL, SW_SHOW);
system("pause");
return 0;
}

回答4:

尴尬……

回答5:

#include
#include
#include
using namespace std;
string s;
int main()
{
cout<<"请输入想打开的网站:";
cin>>s;
ShellExecute(NULL,"open",s.c_str(),NULL,NULL,SW_SHOW);
system("pause");
return 0;
}
//这个比你们的好多了