C# 读取网页内容 Streamreader
我需要在 Streamreader 中读取网页的内容,例如
www.example.com
<test>
<sample></sample>
</test>
我得到了这个:
System.IO.StreamReader StreamReader1 =
new System.IO.StreamReader("www.example.com");
string test = StreamReader1.ReadToEnd();
但是我得到了这个错误代码
尝试访问该方法失败: System.IO.StreamReader..ctor(System.String)
I need to read the content of a webpage in streamreader like
www.example.com
<test>
<sample></sample>
</test>
i got this:
System.IO.StreamReader StreamReader1 =
new System.IO.StreamReader("www.example.com");
string test = StreamReader1.ReadToEnd();
but i then i get this error code
Attempt to access the method failed:
System.IO.StreamReader..ctor(System.String)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下 WebClient,它更容易,而且您不需要必须担心溪流和河流:
Try a WebClient, it's easier and you don't have to worry about streams and rivers:
如果您想使用 StreamReader,这是我正在使用的代码:
...
If you want to use the StreamReader, here is the code I am using:
...