• 网络信息获取代码1------ 慕课第10 北大唐大壮


     1 using System;
     2 using System.Net;
     3 using System.Text;
     4 namespace _1
     5 {
     6     class Program
     7     {
     8         static void Main(string[] args)
     9         {
    10             string url = @"http://fanyi.baidu.com/?aldtype=16047#auto/zh";
    11             WebClient client = new WebClient();
    12             byte[] pageData = client.DownloadData(url);
    13             string pageHtml = Encoding.Default.GetString(pageData);
    14             Console.WriteLine(pageHtml);
    15         }
    16     }
    17 }
    View Code
     1 using System;
     2 using System.Net;
     3 using System.Text;
     4 namespace _1
     5 {
     6     class Program
     7     {
     8         static void Main(string[] args)
     9         {
    10             string url = @"http://fanyi.baidu.com/?aldtype=16047#auto/zh";
    11             WebClient client = new WebClient();
    12             byte[] pageData = client.DownloadData(url);
    13             string pageHtml = Encoding.Default.GetString(pageData);
    14             Console.WriteLine(pageHtml);
    15         }
    16     }
    17 }
  • 相关阅读:
    noip不知道哪年 货车运输
    bzoj1002轮状病毒
    bzoj1001狼抓兔子
    20171002模拟赛
    20171001模拟赛
    异常
    springmvc-servlet.xml 第二种选择
    springmvc入门
    springmvc-servlet.xml(springmvc-servlet.xml 配置 增强配置)
    777
  • 原文地址:https://www.cnblogs.com/gdf456/p/9492009.html
Copyright © 2020-2023  润新知