码迷,mamicode.com
首页 > Windows程序 > 详细

c# 获取百度最后的url

时间:2017-07-25 10:12:07      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:static   and   blog   .text   logs   text   ram   gen   ati   

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;

 

namespace getBaiDuUrl
{
class Program
{
static void Main(string[] args)
{
string LastAdurl= GetLocation("http://www.baidu.com/link?url=MW4aqBcVd9VSAsqrVcG8lMzlHUU1qWjFsD_PxZNEjJlxE1sNpirSITeWwcBgcGQ8");
}
public static string GetLocation(string URL)
{
HttpClientHandler hander = new HttpClientHandler();
hander.AllowAutoRedirect = false;
HttpClient client = new HttpClient(hander);
return client.GetAsync(URL).Result.Headers.Location.ToString();
}
}
}

 

c# 获取百度最后的url

标签:static   and   blog   .text   logs   text   ram   gen   ati   

原文地址:http://www.cnblogs.com/c-x-a/p/7232154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!