tags:

views:

581

answers:

3

Which JSON rewriter is the best for applications written in Java? Criteria may vary. I'm personally most interested in stability and performance.

+1  A: 

This one works just fine: http://json-lib.sourceforge.net/

Don
+3  A: 

I am using the one from http://www.json.org. The direct link to the Java code is this: http://www.json.org/java/index.html.

The nice thing about it is that it does not require any dependencies. You just need to add seven source files to your project and you've got yourself a JSON builder.

Itay
A: 

This JsonTools library is very complete. You can find it at Berlios.

Bruno Ranschaert