前端之家收集整理的这篇文章主要介绍了
缓存 – 如何以编程方式保存网页?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想以编程方式保存网页.
我并不仅仅意味着保存HTML.我还想自动存储所有相关文件(图像,CSS文件,可能是嵌入式SWF等),并希望重写本地浏览的链接.@H_403_3@
预期用途是个人书签应用程序,其中在原始副本被删除的情况下缓存链接内容.@H_403_3@
看看
wget,特别是-p标志
−p −−page−requisites
This option causes Wget to download all the files
that are necessary to properly display
a givenHTML page. Thisincludes such
things as inlined images,sounds,and
referenced stylesheets.
以下命令:@H_403_3@
wget -p http://<site>/1.html
将下载page.html及其所需的所有文件.@H_403_3@
原文链接:https://www.f2er.com/html/242438.html