Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以从.bat文件创建和执行或将 HTML 嵌入.bat文件中。
.bat
我需要 HTML 来写入/读取本地文件夹中的文件。这个 HTML 我应该能够使用.bat.
可能吗?
尝试这个:
(echo ^<html^> echo ^<b^>Hello world^</b^> echo ^</html^> )>test.html
echo ^<html^> > test.html echo ^<b^>Hello world^</b^> >> test.html echo ^</html^> >> test.html
要在默认浏览器中打开此 HTML,请使用:
start test.html