Git Product home page Git Product logo

Comments (8)

taowen avatar taowen commented on May 18, 2024

can you give a sample code, with expected result?

from java.

GiantCrocodile avatar GiantCrocodile commented on May 18, 2024

Hey @taowen! I want this JSON string to be crafted/produced by your JSON library without putting JSON formatting around the values and key names myself:

"{\"type\": \"ANT_ACTION_GOLEFT\", \"color\": \"ANT_COLOR_BLUE\"}" 

So I want a normal String object to represent my key type with value ANT_ACTION_GOLEFT and key color with ANT_COLOR_BLUE and get it converted to JSON by the library.

from java.

taowen avatar taowen commented on May 18, 2024
"{\"type\": \"ANT_ACTION_GOLEFT\", \"color\": \"ANT_COLOR_BLUE\"}"

this is the input or output? If this is the output, what is the java code to define to object or map in the first place? Do you have a working piece of code?

from java.

GiantCrocodile avatar GiantCrocodile commented on May 18, 2024

The quoted string is how it should look like (without the escape symbols of course). I want this output:

{
"type": "ANT_ACTION_GOLEFT",
"color": "ANT_COLOR_BLUE"
}

but I don't know what kind of string or array object I should pass to serializer so I get this output. I would expect a 2D String array to work but not sure.

from java.

taowen avatar taowen commented on May 18, 2024
HashMap<String, Object> map = new HashMap<String, Object>();
map.put("type", "ANT_ACTION_GOLEFT");
map.put("color", "ANT_COLOR_BLUE");
JsonStream.serialize(map);

from java.

GiantCrocodile avatar GiantCrocodile commented on May 18, 2024

This works @taowen! Although it feels like it is a bit too complex for just two two keys with simple String values. Is there something where I can read up on which types are supported and how to put them into serializer, like to see if there are alternatives to HashMap for my case?

from java.

taowen avatar taowen commented on May 18, 2024

this is the simplest way...

from java.

GiantCrocodile avatar GiantCrocodile commented on May 18, 2024

Okay, fair enough. Thank you :)! The docs were a bit hard to understand for me as a newbie to this lib.

from java.

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.