Tagged Questions

The Gson project is hosted at and available for download from http://code.google.com/p/google-gson/. Alternatives Alternative Java-to-JSON binding solutions with similar APIs include FastJSON, Jackson, and svenson. Yet more Java-to-JSON libraries are listed at json.org. Pros and Cons of the ...

learn more… | top users | synonyms

33
votes
4answers
14k views

Jackson Vs. Gson

After searching through some existing libraries for JSON, I have finally ended up with these two: Jackson Google GSon I am a bit partial towards GSON, but word on the net is that GSon suffers from ...
14
votes
4answers
13k views

Convert JSON to HashMap using Gson in Java

I'm requesting data from a server which returns data in the JSON format. Casting a HashMap into JSON when making the request wasn't hard at all but the other way seems to be a little tricky. The JSON ...
9
votes
1answer
796 views

Can you avoid Gson converting “<” and “>” into unicode escape sequences?

I noticed that Gson converts the string "<" into an unicode escape sequence in JSON output. Can you avoid this somehow, or do characters like "<" and ">" always have to be escaped in JSON? ...
9
votes
3answers
3k views

Gson: Directly convert String to JsonObject (no POJO)

Can't seem to figure this out. I'm attempting JSON tree manipulation in GSON, but I have a case where I do not know or have a POJO to convert a string into prior to converting to JsonObject. Is ...
8
votes
2answers
671 views

Serializing List of Interfaces GSON

I came across some weird behavior in GSON. If I have the following class structure: public interface Animal { public void nothing(); } public class Cat implements Animal { private String ...
8
votes
3answers
3k views

using Gson library in GWT client code

I'm currently writing a web application in java using GWT 2.0 in eclipse. I wanted to know if there is a way to use Gson library in a GWT application's client code. and if there is a way - please ...
6
votes
1answer
950 views

How to parse dynamic JSON fields with GSON?

So I'm using GSON to parse JSON from an API and am stuck as to how to have it parse the dynamic fields in the data. Here is an example of the JSON data returned on a query: { - 30655845: { id: ...
6
votes
3answers
901 views

Deserializing an abstract class in Gson

I have a tree object in JSON format I'm trying to deserialize with Gson. Each node contains its child nodes as fields of object type Node. Node is an interface, which has several concrete class ...
6
votes
4answers
2k views

android: gson performance

I am trying to use gson to do my object mapping on the android emulator. It has been ridiculously slow when processing json data around 208 kb. I do not have any hierarchies in my json. After the ...
6
votes
2answers
283 views

JSON feed to Java Object

I would like to know if there is a webpage/software that can "translate" a Json feed object to a Java object with attributes. For example : { 'firstName': 'John', 'lastName': ...
4
votes
2answers
241 views

Parse a nested JSON using gson

{ "Response": { "MetaInfo": { "Timestamp": "2011-11-21T14:55:06.556Z" }, "View": [ { "_type": "SearchResultsViewType", ...
4
votes
3answers
968 views

Parse JSON date format to String using GSON on Android

I´m getting a lot of dates from a JSON feed. They look like this: \/Date(1307972400000+0200)\/ I need to parse these dates into hours and minutes using Java. EDIT: This is how far I´ve come: ...
4
votes
1answer
117 views

GSon Java Reserved keyword

I have some JSon that I am deserializing using GSon. { "resp": { "posts": [ { ... "public": true, ... }] } My problem is that public is a Java keyword, so how would I make a field ...
4
votes
3answers
465 views

Why does GSON use fields and not getters/setters?

Why does GSON use ONLY fields(private,public,protected)? Is there a way to tell GSON to use only getters and setters?
4
votes
1answer
809 views

How to serialize a class with an interface?

I have never done much with serialization, but am trying to use Google's gson to serialize a Java object to a file. Here is an example of my issue: public interface Animal { public String ...
4
votes
2answers
675 views

Gson serialize POJO with root value included?

I'm having problem when I try to serialize my object using Gson. @XmlRootElement class Foo implements Serializable { private int number; private String str; public Foo() { number ...
4
votes
2answers
3k views

Using GSON in Android to parse a complex JSON object

I'm relatively new to Java programming and need to parse a complex JSON object across the wire. I've been reading documentation on GSON the past day and Haven't had much luck being able to fully ...
4
votes
2answers
2k views

How to serialize a Map of a Map with GSON?

I want to serialize my Example class below into JSON using GSON. import com.google.gson.Gson; import com.google.gson.GsonBuilder; import java.util.LinkedHashMap; public class Example { private ...
4
votes
1answer
1k views

Java - Gson parsing nested within nested

I have to interact with an API, and the response format (from what I've read) seems to be poorly structured. I've found a google groups reply to a somewhat similiar problem here, but I'm having ...
4
votes
2answers
1k views

Using generics with GSON

I am using GSON to decode JSON into an object of type T e.g. public T decode(String json) { Gson gson = new Gson(); return gson.fromJson(json, new TypeToken<T>() {}.getType()); } This ...
4
votes
3answers
1k views

JSON Serialize / Deserialize generic type with google-gson

Well, I have to confess I'm not good at generic type in Java I've written a JSON serialize/deserialize class in C# using JavaScriptSerializer private static JavaScriptSerializer js = new ...
4
votes
1answer
643 views

Gson and the argonauts - problem converting javascript array, to json string, to java pojo using gson. Trying to get my structures correct

Here is my json string, that I am acessing in java: json = [ {"id":"123456","Data":"skill2","dmlcrud":false}, {"id":"123456","Data":"skill3","dmlcrud":true}, ...
4
votes
3answers
1k views

GSON on Google App Engine throws a Security Exception

I am trying to convert an object into JSON using the GSON library on Google App Engine. For some reason, it throws this exception and I don't understand how to solve this. Any suggestions? ...
4
votes
1answer
2k views

Parsing JSON with GSON

I'm having some trouble with GSON, mainly deserializing from JSON to a POJO. I have the following JSON: { "events": [ { "event": { "id": ...
4
votes
2answers
2k views

Is google gson running on android?

I'm playing arround with google gson for communication with my web back end at the moment. This and this older posts indicate that there are some problems with gson on android. I did some easy ...
3
votes
1answer
62 views

JAVA - Best approach to parse huge (extra large) JSON file

I'm trying to parse some huge JSON file (like http://eu.battle.net/auction-data/258993a3c6b974ef3e6f22ea6f822720/auctions.json) using gson library (http://code.google.com/p/google-gson/) in JAVA. I ...
3
votes
1answer
28 views

deserializing json object from SPARQL query by gson error

I have a problem in deserializing json object coming from DBpedia by a sparql query. i'm using gson to deserialize it and used this tool to generate the Object Class: jsongen.byingtondesign.com the ...
3
votes
5answers
448 views

GSON : custom object serialization

Ok so I edited the question because it wasn't clear enough. Edit 2 : updated the JSON file. I'm using GSON in an Android app, and I need to parse JSON files, that come from a server, and are a ...
3
votes
6answers
200 views

Is there a way to create the bean class from a json response

Converting Json to Java The above question is with reference to what has been described on the above thread. There are so many API(s) which provide the flexibility to return responses either in XML ...
3
votes
2answers
1k views

GSON - Date format

I'm trying to have a custom date format in Gson output, but .setDateFormat(DateFormat.FULL) doesn't seem to work and it the same with .registerTypeAdapter(Date.class, new DateSerializer()). It's like ...
3
votes
4answers
842 views

Android Proguard gson and classcastexception

I am having a hell of a time with gson and proguard. I have a simple object and when I parse tojson, save to sqllite and read back from the database in order to load the json back to my object, I get ...
3
votes
1answer
266 views

Configure gson to serialize Calendar type for wcf web service

I have an object that contains a Calendar type representing the CreatedOn date. I have gotten the adapter to display the milliseconds, but I"m not sure how to output the device configured timezone ...
3
votes
1answer
301 views

Parsing Gson with Json not working for Android

I have a web service class that successfully pulls my JSON from a feed into a String. I want to use Gson to parse it into a List of a custom class, but the parsing messes up somehow. Right now the ...
3
votes
2answers
395 views

Reading JSON Content

I'm using jsoup to scrape some HTML data and it's working out great. Now I need to pull some JSON content (only JSON, not HTML). Can I do this easily with jsoup or do I have to do it using another ...
3
votes
1answer
460 views

Parsing JSON with GSON, object sometimes contains list sometimes contains object, Pls HELP!

I'm working with an API that sometimes contains a list of child objects: { 'obj' : { children: [ {id: "1"}, {id: "2"} ] } } I can parse this no problem. But if there just one child it doesn't ...
3
votes
3answers
262 views

Force GSON to use specific constructor

public class UserAction { private final UUID uuid; private String userId; /* more fields, setters and getters here */ public UserAction(){ this.uuid = UUID.fromString(new ...
3
votes
2answers
274 views

Gson custom deseralizer for one variable in an object

My probelm example: We have an object type of Apple. Apple has some member variables: String appleName; // The apples name String appleBrand; // The apples brand List<Seed> seeds; // A list of ...
3
votes
1answer
130 views

Binding data in Android

I have following scenario. There is OrderHeader and OrderDetail tables in SQLLite database. I have Activity where I want to display that data. There is number of fields... The way I see it - it has ...
3
votes
2answers
348 views

GoogleAdMobAdsSDK-4.0.2.jar and google GSON

I recently downloaded the newest GoogleAdMobAdsSDK-4.0.2.jar to use in my Android project. My project also uses the gson-1.5.jar library. After importing the GoogleAdMobAdsSDK-4.0.2.jar and build, ...
3
votes
2answers
2k views

Using GSON to parse array with multiple types

I wish to use GSON to parse the following json: [ [ "hello", 1, [2] ], [ "world", 3, [2] ] ] So, that's 1 array, containing 2 arrays. ...
3
votes
2answers
890 views

Using a generic type with Gson

I am trying to create a generic class for use with Google Gson. I've created the class GsonJsonConverterImplementation<T>. This class has the following method: public T deserialize(String ...
3
votes
1answer
407 views

Getting AccessControlException when instantiating Gson in GAE. why?

I'm writing a servlet for GAE that responds with a simple JSON serialization of a POJO. The thing is, I'm getting AccessControlException when I instantiate the Gson object itself, even before ...
3
votes
1answer
402 views

Parsing json where field can have two diffrent types with gson or jackson

I have json with field that contains two different types. "fields":[{"value":"ZIELONE OKO"},{"value":{"@nil":"true"}}] I have problem with deserializing these. My class with model contains: ...
3
votes
4answers
4k views

Custom HttpMessageConverter with @ResponseBody to do Json things

I don't like Jackson. I want to use ajax but with Google Gson. So I'm trying to figure out how to implement my own HttpMessageConverter to use it with @ResponseBody annotation. Can someone take a time ...
3
votes
3answers
1k views

Reading JSon String with Gson

I've been pursing around Google trying to figure this out, but I can't seem to do it. I have the following json string that is returned to my java applet from another source that i need to interact ...
3
votes
1answer
873 views

What is the easiest way to parse json using gson when the element to parse is an element of a json string?

I am using gson to parse json into java beans. For the API I am using, a large number of the json results include the result as the first property of a json object. The "gson way" seems to be to ...
3
votes
1answer
1k views

Java + GWT + GSON on server side

I already read that there is no possibility to run GSON in GWT client code, but that it is possible to run it in server code. The latter one is which I'm trying to achive, but not getting to work. I ...
3
votes
3answers
8k views

How do I use Google's Gson API to deserialize JSON properly?

In short, this is a sketch of the JSON object I want to parse in JAVA: { object1: { item1: //[String | Array | Object] , item2: // ... //<> more items ...
3
votes
2answers
480 views

Reflection Permission problems when using the GSON library in a applet

I'm writing an Applet that makes some JSON-RPC calls. I'm using the Google JSON library (GSON) to cast the response JSON into a class. Thsi seems to work fine as is but when I use this code in my ...
3
votes
1answer
3k views

How do I install the GSON module in Java

I downloaded the Google JSON module a.k.a GSON. I'm ona windows system Could you tell me how to install the GSON module? I extracted the JAR into the following folder which was in my classpath: ...

1 2 3 4 5 10