如何启动默认浏览器以打开本地 .html 文件
How to Launch Default Browser to Open Local .html File
可以调用默认浏览器在cmd终端通过explorer.exe打开一个URL(http,https):
> explorer https://google.com
但是,我机器上的 .html 个文件已经指定为使用编辑器打开,Explorer 将在编辑器中打开 HTML 个文件。例如,这些将打开编辑器:
> explorer test.html
> explorer file:///C:/Temp/test.html
如何使用 default browser
在 cmd
中打开 local HTML files
?
尝试 start
命令:
start file://C:/Temp/test.html
可以调用默认浏览器在cmd终端通过explorer.exe打开一个URL(http,https):
> explorer https://google.com
但是,我机器上的 .html 个文件已经指定为使用编辑器打开,Explorer 将在编辑器中打开 HTML 个文件。例如,这些将打开编辑器:
> explorer test.html
> explorer file:///C:/Temp/test.html
如何使用 default browser
在 cmd
中打开 local HTML files
?
尝试 start
命令:
start file://C:/Temp/test.html