Use WebClient to download information into a file : 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 
Use WebClient to download information into a file
Use WebClient to download information into a file
 
/*
C#: The Complete Reference 
by Herbert Schildt 

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


// Use WebClient to download information into a file. 
 
using System; 
using System.Net; 
using System.IO; 
 
public class WebClientDemo {  
  public static void Main() { 
    WebClient user = new WebClient()
    string uri = "http://www.java2s.com"
    string fname = "data.txt"
     
    try 
      Console.WriteLine("Downloading data from " 
                        uri + " to " + fname)
      user.DownloadFile(uri, fname)
    catch (WebException exc) { 
      Console.WriteLine(exc)
    catch (UriFormatException exc) { 
      Console.WriteLine(exc)
    
      
    Console.WriteLine("Download complete.")
  
}

           
         
  
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 LastModifiedUse LastModified
7.Examine the headersExamine the headers
8.Access the InternetAccess the Internet
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.
w_w__w_.___jav___a2_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.