色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

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

注意:并沒有實(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)頁(yè)的連接地址
/// </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)提取到圖片的路徑了,但還需要分絕對(duì)路徑,相對(duì)路徑,以及后綴名是否為圖片,因?yàn)榭赡転?ASP,.ASPx這些,比如驗(yàn)證碼圖片
string imgUrl = math.Groups[0].Value.ToLower();//轉(zhuǎn)成小寫,=號(hào)之間可能有不定的空格

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

//路徑處理
if (imgUrl.Substring(0, 4) != "http")
{
//需要判斷是否是絕對(duì)路徑還是相對(duì)路徑
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(http://www.jb51.NET, "utf-8", path));

AspNet技術(shù)asp.net保存遠(yuǎn)程圖片的代碼,轉(zhuǎn)載需保留來(lái)源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 海阳市| 肇源县| 梨树县| 兴隆县| 都兰县| 巴林右旗| 抚顺县| 攀枝花市| 临潭县| 寿阳县| 报价| 岳普湖县| 陵水| 久治县| 沾益县| 临湘市| 上杭县| 伊吾县| 渝北区| 凤阳县| 定结县| 茶陵县| 五华县| 彩票| 曲麻莱县| 鄂伦春自治旗| 赣州市| 阳东县| 美姑县| 自贡市| 平顶山市| 许昌市| 奉新县| 宜兰市| 固原市| 石台县| 昌都县| 武汉市| 甘孜县| 彰武县| 化德县|