使用C ++在浏览器中打开HTML文件

时间:2012-07-04 10:28:05

标签: c++ html visual-studio-2010

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

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

4 个答案:

答案 0 :(得分:4)

#include <windows.h>

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

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

答案 1 :(得分: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!");
    }  
}

答案 2 :(得分:0)

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

#include <windows.h>
void main()
{ 
    LPCTSTR helpFile = "c\help\helpFile.html";
    ShellExecute(NULL, "open", helpFile, NULL, NULL, SW_SHOWNORMAL);
    system("PAUSE");
}

答案 3 :(得分:0)

如果您要开发UWP:

    Windows::System::Launcher::LaunchUriAsync(ref new Uri("https://www.google.com"));