怎么把一张网页上的全部图片都保存到文件夹里

已举报 回答
怎么把一张网页上的全部图片都保存到文件夹里
问在线客服
扫码问在线客服
  • 回答数

    7

  • 浏览数

    9,078

7个回答 默认排序
  • 默认排序
  • 按时间排序

已采纳
把一张网页上的所有图片都保存到文件夹里的方法:
1、点击网页右上角的工具,在下拉菜单中点击:文件 - 另存为;

2、在打开的保存网页窗口,点击:保存;

3、找到保存网页的文件夹就可以查看保存的网页(网页中的图片)。
取消 评论
浏览器最上面:文件--保存---确定。
在保存好的地方有一个文件夹和一个网页图标。那个文件夹里就是你要的图片
取消 评论
很简单,在你的那个网页上,点击“文件”菜单,有个“另存为”,你直接把它另存到一个地方,它里面所有的东西就会存为一个文件夹,想要什么就直接找把,哈哈,简单把
取消 评论
浏览器上有个文件选项 点开 保存 或者另存为 然后选类型
取消 评论
打开一个你需要保存的网页 点击 IE栏上的 “文件” 快捷键是ALT+F键 然后点击 “另存为”
选择保存路径就OK乐
取消 评论
C#代码如下:
using System;using System.Net;using System.IO;using System.Text;namespace mynamespace{ public class Downloader { /// summary /// 下载图片 /// /summary /// param name=picUrl图片Http地址/param /// param name=savePath保存路径/param /// param name=timeOutRequest最大请求时间,如果为-1则无限制/param /// returns/returns public static bool DownloadPicture(string picUrl, string savePath,int timeOut) { bool value = false; WebResponse response = null; Stream stream = null; try { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(picUrl); if (timeOut != -1) request.Timeout = timeOut; response = request.GetResponse(); stream = response.GetResponseStream(); if (!response.ContentType.ToLower().StartsWith(text/)) value = SaveBinaryFile(response, savePath); } finally { if(stream!=null) stream.Close(); if (response != null) response.Close(); } return value; }private static bool SaveBinaryFile(WebResponse response, string savePath) { bool value = false; byte[] buffer = new byte[1024]; Stream outStream = null; Stream inStream = null; try { if (File.Exists(savePath)) File.Delete(savePath); outStream = System.IO.File.Create(savePath); inStream = response.GetResponseStream(); int l; do { l = inStream.Read(buffer, 0, buffer.Length); if (l 0) outStream.Write(buffer, 0, l); } while (l 0); value = true; } finally { if(outStream!=null) outStream.Close(); if(inStream!=null) inStream.Close(); } return value; } }}
取消 评论
被覆盖了,应该不可恢复
取消 评论
ZOL问答 > 怎么把一张网页上的全部图片都保存到文件夹里

举报

感谢您为社区的和谐贡献力量请选择举报类型

举报成功

经过核实后将会做出处理
感谢您为社区和谐做出贡献

扫码参与新品0元试用
晒单、顶楼豪礼等你拿

扫一扫,关注我们
提示

确定要取消此次报名,退出该活动?