国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

asp.net保存遠(yuǎn)程圖片的代碼

2020-01-18 01:32:17
字體:
供稿:網(wǎng)友
注意:并沒有實(shí)現(xiàn)CSS中的圖片采集,且圖片的正則還有待完善。
復(fù)制代碼 代碼如下:

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

//引入空間
using System.Net;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections;

/// <summary>
/// 采集
/// </summary>
public class caiji
{
public caiji()
{
//
// TODO: 在此處添加構(gòu)造函數(shù)邏輯
//
}

/// <summary>
/// 要采集的網(wǎng)頁的連接地址
/// </summary>
/// <param name="url">url</param>
/// <returns></returns>
public static string caijiByUrl(string url,string chargest,string path)
{
string str = GetSourceTextByUrl(url,chargest);

ArrayList lib = new ArrayList();

int i = 0;
//根據(jù)url取得網(wǎng)站域名
Uri uri = new Uri(url);

//Scheme或者協(xié)議,一般為http,Host為取得域名
string baseurl = uri.Scheme + "://" + uri.Host + "/";

//提取出url,包括src等信息
///S匹配任何非空白字符
Regex g = new Regex(@"(src=(""|/')/S+/.(gif|jpg|png|bmp)(""|/'))", RegexOptions.Multiline | RegexOptions.IgnoreCase);

MatchCollection m = g.Matches(str);

foreach (Match math in m)
{
//已經(jīng)提取到圖片的路徑了,但還需要分絕對路徑,相對路徑,以及后綴名是否為圖片,因?yàn)榭赡転?asp,.aspx這些,比如驗(yàn)證碼圖片
string imgUrl = math.Groups[0].Value.ToLower();//轉(zhuǎn)成小寫,=號之間可能有不定的空格

//去除src與單引號,雙引號
imgUrl = imgUrl.Replace("src","");
imgUrl = imgUrl.Replace("/"","");
imgUrl = imgUrl.Replace("'","");
imgUrl = imgUrl.Replace("=","");
imgUrl = imgUrl.Trim();

//路徑處理
if (imgUrl.Substring(0, 4) != "http")
{
//需要判斷是否是絕對路徑還是相對路徑
if (imgUrl.Substring(0, 1) == "/")
{
imgUrl = baseurl + imgUrl;
}
else
{
imgUrl = url.Substring(0,url.LastIndexOf("/") + 1) + imgUrl;
}
}

//判斷元素是否已經(jīng)存在,-1為不存在
if (lib.IndexOf(imgUrl) == -1)
{
lib.Add(imgUrl);
}
}

string str_ = string.Empty;
WebClient client = new WebClient();

for (int j = 0; j < lib.Count; j++)
{
string savepath = path + DateTime.Now.Month + DateTime.Now.Day + DateTime.Now.Minute + DateTime.Now.Second + j + lib[j].ToString().Substring((lib[j].ToString().Length) -4,4);
try
{
client.DownloadFile(new Uri(lib[j].ToString()), savepath);
str_ += lib[j].ToString() + "<br /> 保存路徑為:" + savepath + "<br /><br />";
}
catch (Exception e)
{
str_ += e.Message;
}

}

return str_;
}

public static string GetSourceTextByUrl(string url,string chargest)
{
WebRequest request = WebRequest.Create(url);
request.Timeout = 20000;//20秒超時(shí)
WebResponse response = request.GetResponse();

Stream resStream = response.GetResponseStream();
StreamReader sr = new StreamReader(resStream,Encoding.GetEncoding(chargest));
return sr.ReadToEnd();
}
}

使用:比如我是保存到upload文件夾中的:
復(fù)制代碼 代碼如下:

string path = Server.MapPath("~/upload/");
Response.Write(caiji.caijiByUrl(//www.survivalescaperooms.com, "utf-8", path));
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 泽库县| 广元市| 丘北县| 栾城县| 汨罗市| 万年县| 英吉沙县| 务川| 桂东县| 天全县| 唐海县| 大安市| 芮城县| 义乌市| 尼玛县| 班戈县| 牡丹江市| 安仁县| 凭祥市| 鄱阳县| 平安县| 卢氏县| 博爱县| 通河县| 民权县| 炉霍县| 叙永县| 疏勒县| 乐安县| 白水县| 鹤山市| 华池县| 阿合奇县| 哈密市| 礼泉县| 远安县| 边坝县| 油尖旺区| 樟树市| 涟源市| 文山县|