Git Product home page Git Product logo

Comments (2)

Bunny83 avatar Bunny83 commented on September 27, 2024

I don't quite understand the issue here. ToString of a JSONNode should return the json representation of that node. Doing an implicit or explicit cast to string will actually try to access the content only. This is the intended behaviour.

Your example code is a bit confusing since it won't compile in it's current state. Also you have quotes before your array and before your object which makes no sense unless you want to embed json text as string inside the outer json structure. However if your "data" should represent a json array there must not be a quote after the colon.

If you have trouble with some json text it might be your text that doesn't follow the right syntax.

from simplejson.

lyx32 avatar lyx32 commented on September 27, 2024

My english is not very good, but you should be able to understand what i mean

demo1
`

   String jsonString = "{\"id\":\"1\",\"name\":\"name-1\"}";
        JSONNode j = JSON.Parse(jsonText);
        String id1 = j["id"];                   // return 1
        String id2 = (String)j["id"];           // return 1
        String id3 = j["id"].ToString();        // return "1"
        String name1 = j["name"];               // return name-1
        String name2 = (String)j["name"];       // return name-1
        String name3 = j["name"].ToString();    // return "name-1"

`

demo2

`

        using (StreamReader sr = new StreamReader("D:\\json.txt"))
        {
            JSONNode j = JSON.Parse(sr.ReadToEnd());
            String id1 = j["id"];                   // return 111
            String id2 = (String)j["id"];           // return 111
            String id3 = j["id"].ToString();        // return "111"
            String name1 = j["name"];               // return json.text.name
            String name2 = (String)j["name"];       // return json.text.name
            String name3 = j["name"].ToString();    // return "json.text.name"
        }

`
file "json.txt " content

{"id":"111","name":"json.text.name"}

from simplejson.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.