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

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Network » Web ClientScreenshots 
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 == -1break
      Console.Write((charch)
      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.
ww_w.__j_a___v_a_2__s__.__c_o___m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.