anyone know how can i convert this java.util.linke...
# lucee
g
anyone know how can i convert this java.util.linkedhasmap to coldfusion json https://prnt.sc/BcIls9QYw5p0
b
To be clear, that's an array containing a linked map, but what happens when you try?
Because it works fine when I try
Copy code
map = createObject( 'java', 'java.util.LinkedHashMap' ).init({foo:'bar'})

dump( map )
dump( serializeJSON( map ) )
message has been deleted
So you'll need to now present your complete, failing example code for us to see
g
i did its serialization and then deserialied it, and it works
thanks for your gist too