using System;
using System.Net;
using System.IO;
class MainClass
{
[STAThread]
static void Main(string[] args)
{
WebRequest MyRequest = WebRequest.Create("http://www.java2java.com");
WebResponse MyResponse = MyRequest.GetResponse();
Stream MyStream = MyResponse.GetResponseStream();
StreamReader MyReader = new StreamReader(MyStream);
string MyWebLine;
while ((MyWebLine = MyReader.ReadLine()) != null)
{
Console.WriteLine(MyWebLine);
}
MyStream.Close();
}
}
|