4

我正在使用 Visual Studio 用 C++ 编写程序,我需要做的是创建一个 HTML 文件并在其中写入数据,然后我希望在浏览器中打开它。现在我可以创建文件,写东西,但我无法打开它,有人可以帮忙吗?

这可能是一个简单的问题,但我只是一个初学者。

4

4 回答 4

5
#include <windows.h>

void main()
{  
   ShellExecute(NULL, "open", "http://dreamincode.net",
                NULL, NULL, SW_SHOWNORMAL);
}

http://www.dreamincode.net/code/snippet357.htm 您只需将代码中显示的上述 URL 替换为您的 html 文件的绝对路径即可。当然可以用变量来完成。

于 2012-07-04T10:32:18.477 回答
2
    void CAboutDlg::OnButton1()
{
    CString strDir;
    char buffer[255];

    GetCurrentDirectory(255, buffer);

    strDir = buffer;

    strDir.TrimRight("\\");
    strDir += "\\";
    strDir += _T("helpindex.html");

    if( 32 >= (int)ShellExecute( NULL, "open", strDir, NULL, NULL, SW_SHOWNORMAL))
    {
        AfxMessageBox("::ShellExecuteFailed"
             " to open this link!");
    }  
}
于 2012-07-04T10:31:43.740 回答
0

试试这个......它对我来说很好......

#include <windows.h>
void main()
{ 
    LPCTSTR helpFile = "c\help\helpFile.html";
    ShellExecute(NULL, "open", helpFile, NULL, NULL, SW_SHOWNORMAL);
    system("PAUSE");
}
于 2015-10-13T15:05:27.190 回答
0

如果您正在为 UWP 开发:

    Windows::System::Launcher::LaunchUriAsync(ref new Uri("https://www.google.com"));
于 2020-02-10T18:04:51.280 回答