• c#访问网页


    使用c#访问一个页面获取页面返回的字符串。

    1、首先创建WebRequest对象,只能使用WebRequest.Create(url)静态方法。不能使用new。

    WebRequest req=WebRequest.Create(url);

    2、创建相应对象WebResponse,并将WebRequest的相应结果赋值给他。

    WebResponse rep=req.GetResponse();

    3、定义流对象接收相应数据。

    Stream webstream=rep.GetResponseStream();

    4、从流对象中提取数据,前面定义的流对象是抽象类不能直接进行操作(是这样吗?),需要使用新的流操作类。本例中获取字符串使用StreamReader类,

    StreamReader sr=new StreamReader(webstream);

    string br=sr.ReadToEnd();

    看教程上说也可以使用BinaryReader类的ReadString(),我使用后出现无法在结尾读取流的错误,网上没搜到答案,以后再细查。

  • 相关阅读:
    curl continue
    actor
    nginx
    jmx additional port
    diff
    lsof
    zk reconnect
    Python:Python基础(一)
    Python:初识Python(二)
    Python:初识Python(一)
  • 原文地址:https://www.cnblogs.com/outofthink/p/1286185.html
Copyright © 2020-2023  润新知