Access the Internet : Web Client « Network « C# / C Sharp






Access the Internet

Access the Internet
   
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/


// Access the Internet. 
 
using System; 
using System.Net; 
using System.IO; 
 
public class NetDemo {  
  public static void Main() { 
    int ch; 
 
    // First, create a WebRequest to a URI. 
    HttpWebRequest req = (HttpWebRequest) 
           WebRequest.Create("http://www.java2s.com"); 
 
    // Next, send that request and return the response. 
    HttpWebResponse resp = (HttpWebResponse) 
           req.GetResponse(); 
 
    // From the response, obtain an input stream. 
    Stream istrm = resp.GetResponseStream(); 
 
 
    /* Now, read and display the html present at 
       the specified URI.  So you can see what is 
       being displayed, the data is shown 
       400 characters at a time.  After each 400 
       characters are displayed, you must press 
       ENTER to get the next 400. */ 
   
    for(int i=1; ; i++) { 
      ch =  istrm.ReadByte(); 
      if(ch == -1) break; 
      Console.Write((char) ch); 
      if((i%400)==0) { 
        Console.Write("\nPress a key."); 
        Console.Read(); 
      } 
    } 
 
    // Close the Response. This also closes istrm. 
    resp.Close(); 
  } 
}


           
         
    
    
  








Related examples in the same category

1.Basic WebClient
2.Save web page from HttpWebResponse
3.Displays the resource specified
4.My Web Client
5.Handle network exceptionsHandle network exceptions
6.Use WebClient to download information into a fileUse WebClient to download information into a file
7.Use LastModifiedUse LastModified
8.Examine the headersExamine the headers
9.Reading Web Pages
10.NetworkCredential Cache Test
11.NetworkCredential test
12.Download Data Test
13.Download File Test
14.Web GetWeb Get
15.Web Client Upload Values Test
16.Web Client Upload Data Test 2
17.Web Client Response Headers Test
18.Web Client Open Write Test
19.Web Client Open Read Test
20.Gets or sets the network credentials that are sent to the host and used to authenticate the request.
21.Download String
22.Web Downloader
23.Fetches a web page
24.Http Get
25.Returns a site relative HTTP path from a partial path starting out with a ~.
26.Get Web Text
27.HTTP error code
28.Stores/save an image from the web to disk.