Table of Contents
Dynamic Keyed Object Deserialization with JSON.NET
Problem Statement
Solution
Implementation
Usage
Output
Home Backend Development C++ How can JSON.NET efficiently deserialize JSON with dynamic keys into accessible objects?

How can JSON.NET efficiently deserialize JSON with dynamic keys into accessible objects?

Jan 07, 2025 pm 12:31 PM

How can JSON.NET efficiently deserialize JSON with dynamic keys into accessible objects?

Dynamic Keyed Object Deserialization with JSON.NET

When working with JSON data containing objects with dynamic keys, conventional class deserialization can pose challenges. This article will explore how to tackle this scenario using JSON.NET.

Problem Statement

Consider the following JSON data:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

{

    "users" : {

        "100034" : {

            "name"  : "tom",

            "state" : "WA",

            "id"    : "cedf-c56f-18a4-4b1"

        },

        "10045" : {

            "name"  : "steve",

            "state" : "NY",

            "id"    : "ebb2-92bf-3062-7774"

        },

        "12345" : {

            "name"  : "mike",

            "state" : "MA",

            "id"    : "fb60-b34f-6dc8-aaf7"

        }

    }

}

Copy after login

How can we access each object directly from this data, without the need for manual key parsing?

Solution

JSON.NET offers a convenient solution for deserializing objects with dynamic keys using its Dictionary<string, T> class. This class allows us to represent JSON objects as dictionaries, where the keys are strings and the values are objects of type T.

Implementation

To achieve this, we define two classes:

1

2

3

4

5

6

7

8

9

10

11

class RootObject

{

    public Dictionary&lt;string, User&gt; users { get; set; }

}

 

class User

{

    public string name { get; set; }

    public string state { get; set; }

    public string id { get; set; }

}

Copy after login

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

string json = @"

{

    ""users"": {

        ""10045"": {

            ""name"": ""steve"",

            ""state"": ""NY"",

            ""id"": ""ebb2-92bf-3062-7774""

        },

        ""12345"": {

            ""name"": ""mike"",

            ""state"": ""MA"",

            ""id"": ""fb60-b34f-6dc8-aaf7""

        },

        ""100034"": {

            ""name"": ""tom"",

            ""state"": ""WA"",

            ""id"": ""cedf-c56f-18a4-4b1""

        }

    }

}";

 

RootObject root = JsonConvert.DeserializeObject&lt;RootObject&gt;(json);

Copy after login

Usage

The following code demonstrates how to access the objects from the deserialized data:

1

2

3

4

5

6

7

8

9

foreach (string key in root.users.Keys)

{

    Console.WriteLine("key: " + key);

    User user = root.users[key];

    Console.WriteLine("name: " + user.name);

    Console.WriteLine("state: " + user.state);

    Console.WriteLine("id: " + user.id);

    Console.WriteLine();

}

Copy after login

Output

The code will produce the following output:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

key: 10045

name: steve

state: NY

id: ebb2-92bf-3062-7774

 

key: 12345

name: mike

state: MA

id: fb60-b34f-6dc8-aaf7

 

key: 100034

name: tom

state: WA

id: cedf-c56f-18a4-4b1

Copy after login

The above is the detailed content of How can JSON.NET efficiently deserialize JSON with dynamic keys into accessible objects?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

C language function format letter case conversion steps C language function format letter case conversion steps Mar 03, 2025 pm 05:53 PM

C language function format letter case conversion steps

What are the types of values ​​returned by c language functions? What determines the return value? What are the types of values ​​returned by c language functions? What determines the return value? Mar 03, 2025 pm 05:52 PM

What are the types of values ​​returned by c language functions? What determines the return value?

Gulc: C library built from scratch Gulc: C library built from scratch Mar 03, 2025 pm 05:46 PM

Gulc: C library built from scratch

What are the definitions and calling rules of c language functions and what are the What are the definitions and calling rules of c language functions and what are the Mar 03, 2025 pm 05:53 PM

What are the definitions and calling rules of c language functions and what are the

How does the C   Standard Template Library (STL) work? How does the C Standard Template Library (STL) work? Mar 12, 2025 pm 04:50 PM

How does the C Standard Template Library (STL) work?

Where is the return value of the c language function stored in memory? Where is the return value of the c language function stored in memory? Mar 03, 2025 pm 05:51 PM

Where is the return value of the c language function stored in memory?

distinct usage and phrase sharing distinct usage and phrase sharing Mar 03, 2025 pm 05:51 PM

distinct usage and phrase sharing

How do I use algorithms from the STL (sort, find, transform, etc.) efficiently? How do I use algorithms from the STL (sort, find, transform, etc.) efficiently? Mar 12, 2025 pm 04:52 PM

How do I use algorithms from the STL (sort, find, transform, etc.) efficiently?

See all articles