Groovy - Convert object to JSON string

后端 未结 3 915
灰色年华
灰色年华 2021-01-30 12:23

I\'m pretty used to Grails converters, where you can convert any object to a JSON representation just like this (http://grails.org/Converters+Reference)

return f         


        
3条回答
  •  太阳男子
    2021-01-30 13:07

    I couldn't get the other answers to work within the evaluate console in Intellij so...

    groovy.json.JsonOutput.toJson(myObject)
    

    This works quite well, but unfortunately

    groovy.json.JsonOutput.prettyString(myObject)
    

    didn't work for me.

    To get it pretty printed I had to do this...

    groovy.json.JsonOutput.prettyPrint(groovy.json.JsonOutput.toJson(myObject))
    

提交回复
热议问题