Click here to Skip to main content
Click here to Skip to main content

Use C# to get JSON Data from the Web and Map it to .NET Class => Made Easy!

By , 30 Apr 2013
 

Introduction

This tip/trick demonstrates a complete and easy solution on how to get JSON formatted data from a web service, and map (deserialize) it to custom .NET class for further usage.

As an example, we will use http://openexchangerates.org site which provides latest currency rates formatted as JSON data. Latest daily rates will be retrieved from this here.

It outputs currency data in the following JSON format:

{
  "disclaimer": "This data is collected from various providers ...",
  "license": "Data collected from various providers with public-facing APIs ...",
  "timestamp": 1336741253,
  "base": "USD",
  "rates": {
    "AED": 3.6731,
    "AFN": 48.419998,
    "ALL": 107.949997,
    "AMD": 393.410004,
    "ANG": 1.79,
    "AOA": 94.949997,
    // ... more values ...
  }
} 

So, how do we retrieve them through C# on the server side and use them? Read on to find out.

How To - Three Easy Steps

Step 1. Install Json.Net library

Json.NET library provides an easy, and de-facto, standard way to convert (serialize) .NET class to JSON data, and JSON data back to .NET class (deserialize). 

The easiest way to install Json.Net library into your .NET project is via NuGet Package Manager Console by running this command:

install-package Newtonsoft.Json 

Alternatively, if you need to install it manually, download it from its project page on CodePlex.

Step 2. Create .NET class which will match JSON data format

If you are using Visual Studio 2012 you're in luck, since you can just paste a sample JSON data and it will create a class for you, To do that, first create a new class .cs file, select it in project explorer, than copy sample JSON data to clipboard, go to EDIT > Paste Special > Paste JSON as classes (thanks to Dave Kerr for this tip). More information on this feature here

If that won't work for you, or you'd prefer to do it yourself, you'll need to define .NET class manually. It must exactly match the format of JSON data provided to us by http://openexchangerates.org/latest.json:

public class CurrencyRates {
  public string Disclaimer { get; set; }
  public string License { get; set; }
  public int TimeStamp { get; set; }
  public string Base { get; set; }
  public Dictionary<string, decimal> Rates { get; set; }
} 

Note that property names are not case sensitive, but the name has to exactly match the JSON one. Also, notice how "rates" JSON property is matched to a Dictionary<string, decimal>. If "rates" would have a singular value, they could alternatively be matched to an Array or IEnumerable.

Step 3. Create a method to retrieve JSON data and map it to .NET class

Now we will create the following universal method that can be re-used for any .NET class, where 'T' represents any .NET class that you need JSON data to be mapped to:

using System.Net;
using Newtonsoft.Json;

// ...

private static T _download_serialized_json_data<T>(string url) where T : new() {
  using (var w = new WebClient()) {
    var json_data = string.Empty;
    // attempt to download JSON data as a string
    try {
      json_data = w.DownloadString(url);
    }
    catch (Exception) {}
    // if string with JSON data is not empty, deserialize it to class and return its instance 
    return !string.IsNullOrEmpty(json_data) ? JsonConvert.DeserializeObject<T>(json_data) : new T();
  }
} 

Here, at first, an instance of WebClient() System.Net class (a part of the .NET) downloads data from the specific URL (http://openexchangerates.org/latest.json in our case) as a plain string.

Then, this string containing JSON data is mapped (deserialized) to any .NET class provided (CurrencyRates in our case).

Deserialization is done via Json.NET library's method JsonConvert.DeserializeObject<T>(json_data), which attempts to match all JSON fields to the same .NET class fields.

In this example, a call to a universal method _download_serialized_json_data<T>() can look like this:

var url = "http://openexchangerates.org/latest.json";
var currencyRates = _download_serialized_json_data<CurrencyRates>(url); 

And that's it! Now you can do anything you need with the data you retrieved.

Good luck!

History

  • 6/4/12 - Initial publication

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Mikhail Tsennykh
Web Developer Nûby, Inc.
United States United States
Member
Namaste from Monroe, Louisiana!

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionTwo minor questions [modified]memberBillWoodruff30 Apr '13 - 1:26 
AnswerRe: Two minor questionsmemberMikhail Tsennykh30 Apr '13 - 4:43 
Suggestion'Paste JSON As Classes' in Visual StudiomvpDave Kerr29 Apr '13 - 5:24 
GeneralRe: 'Paste JSON As Classes' in Visual StudiomemberBillWoodruff30 Apr '13 - 1:23 
GeneralRe: 'Paste JSON As Classes' in Visual StudiomvpDave Kerr30 Apr '13 - 2:17 
GeneralRe: 'Paste JSON As Classes' in Visual StudiomemberMikhail Tsennykh30 Apr '13 - 4:30 
GeneralRe: 'Paste JSON As Classes' in Visual StudiomvpDave Kerr30 Apr '13 - 4:37 
QuestionExample for POST JSONmemberdeveloper24724 Jan '13 - 13:49 
QuestionMultilayered JSON resultsmemberJohn Mike H.19 Nov '12 - 9:03 
AnswerRe: Multilayered JSON resultsmemberMikhail Tsennykh19 Nov '12 - 11:27 
GeneralRe: Multilayered JSON resultsmemberJohn Mike H.20 Nov '12 - 3:58 
QuestionMixed JSon to Objectmemberrhythmdivine7 Oct '12 - 3:27 
AnswerRe: Mixed JSon to ObjectmemberMikhail Tsennykh7 Oct '12 - 7:05 
GeneralRe: Mixed JSon to Object [modified]memberrhythmdivine7 Oct '12 - 10:12 
GeneralRe: Mixed JSon to ObjectmemberMikhail Tsennykh9 Oct '12 - 11:14 
GeneralMy vote of 5membermanoj kumar choubey18 Jul '12 - 20:49 
QuestionWhy ? DataContractJsonSerializer works fine.memberNicolas Dorier6 Jun '12 - 4:01 
AnswerRe: Why ? DataContractJsonSerializer works fine.memberMikhail Tsennykh6 Jun '12 - 6:37 
GeneralRe: Why ? DataContractJsonSerializer works fine.memberNicolas Dorier6 Jun '12 - 7:14 
GeneralMy vote of 5memberOthello744 Jun '12 - 21:40 
GeneralRe: My vote of 5memberMikhail Tsennykh5 Jun '12 - 6:17 
GeneralMy vote of 5memberparvus4 Jun '12 - 11:30 
GeneralRe: My vote of 5memberMikhail Tsennykh4 Jun '12 - 11:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 30 Apr 2013
Article Copyright 2012 by Mikhail Tsennykh
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid