Gson is Google's open-source library for serializing and deserializing Java objects to/from [JSON].

learn more… | top users | synonyms

-3
votes
1answer
39 views

How to convert this JSON string to Java Object by Gson? [closed]

Here is my json: {"data":{"results":4,"returned":1,"errmsg":""},"products":[{"name":"aaa","region":"USA > ...
0
votes
0answers
7 views

serialize and deserialize enum with Gson

How can i serialize and deserialize a simple enum like this with gson 2.2.4 ? public enum Color { RED, BLUE, YELLOW; } Thanks !
-1
votes
1answer
60 views

JSON String to Java object using GSON

I am trying to parse json to java. I have the following string that is valid json according to jsonlint.com private final static String LOC_JSON = "[" +"{" +" \"lat1\": ...
0
votes
0answers
12 views

Gson: can we get the serialized field name in a type adapter?

I've seen that the default TypeAdapter for Enum doesn't fit my need: private static final class EnumTypeAdapter<T extends Enum<T>> extends TypeAdapter<T> { private final ...
0
votes
1answer
23 views

Gson library, cast JsonObject to MyObject

Im currently using this code to create Objects out of JsonStrings from my Server: JsonParser parser = new JsonParser(); JsonObject myJsonObject = (JsonObject) parser.parse(myInputStreamReader); ...
1
vote
2answers
39 views

Parsing with Gson giving null in nested array list

Here is the json which I want to parse { "success": true, "status": 200, "events": [ { "event": { "artist_id": 54, "created_at": "2013-04-05T08:52:40Z", ...
0
votes
1answer
35 views

How to insert one more item in a json existing structure with gson?

The code below generates correctly the first structure of the json file. gson = new GsonBuilder().setPrettyPrinting().create(); AudDetHeader AudDetHeader = new AudDetHeader(); ...
1
vote
3answers
51 views

JSON to ListView in Android with Gson

I'm trying to put a json result in a ListView in my Android app. This is my Json: [ { "Result": "8:30,21", "Meeting": "Antwerp Olympics", "Event": "3000m", ...
2
votes
1answer
49 views

Android Gson.fromJson error

I've completed a tutorial about how to connect to Json url and parse the content using GSON library. The code works fine for the url specified in the tutorial, but i tryed to modify it to work for ...
0
votes
1answer
35 views

Parsing an List of Abstract objects of POJOS

I want to parse, with Gson's help, a list of abstract objects: List<Pair<Integer, Integer>> Until now, I only had to parse Lists of objects, so when I had to declare it's type I used: ...
-2
votes
1answer
52 views

Parsing JSON String as simple as possible with GSON

Using GSON, how can i return a single key from a Multidimensional Json String? Here is the Multidimensional Json String: ...
1
vote
2answers
68 views

GSON Expected BEGIN_ARRAY but was BEGIN_OBJECT

I'm getting this error when I receive only one single item in a list. I'm using Jersey in the server side REST Web service, I only get the error when the List returned one single element and when it ...
0
votes
2answers
93 views

JSON string from Gson: remove double quotes

Here is an example of my Json code: array("id" => 0, "navn" => "Vind telefon", "udgiver" => "Telia", "beskrivelse" => utf8_encode("Vind en Iphone 5 ved at gætte 1 spørgsmål"), "tilmeldte" ...
2
votes
0answers
30 views

Proguard obfuscation results in java.lang.IllegalArgumentException: class declares multiple JSON fields named “a”

Upon starting up my app logs two errors, but only after obfuscation. Without obfuscation there are no errors. Unless I'm being misled, the errors are like: class Property declares multiple JSON ...
1
vote
1answer
24 views

Chyper SharedPreferences GSON objetcs

I want to store an encrypted Profile object in SharedPreferences using gson. Here's my code: public void saveProfile(Profile newProfile) { try { Log.i(C.TAG, newProfile.toString()); ...
1
vote
3answers
90 views

What am I doing wrong in this parsing?

I am currently parsing through reddit.com/.json with Google Gson and having some trouble. After doing some research I found a way to parse through json with Gson without making a lot of classes. I am ...
1
vote
0answers
60 views

Reading and writing JSON streams

I am trying to read and write JSON directly to and from a socket stream using the gson library. I have a base class that all messages are derived from: abstract class MessageBase { public String ...
0
votes
1answer
38 views

JAVA Google App Engine + Facebook API + GSON = Trouble with Javabean

I am trying to get the user's friends list from Facebook. The problem seems to be the Javabean... FBUser fbuser = new Gson().fromJson(jsonStr, FBUser.class); public class FBUser implements ...
1
vote
1answer
38 views

How do I use Google's Gson to get a certain value from a JSON response?

I am currently trying to parse through a the front page of Reddit using their cool website feature in which you can add /.json to any site to get the json of the page. So the url I am using is ...
2
votes
2answers
47 views

GSON parsing without a lot of classes

I have the following JSON and I'm only interested in getting the elements "status", "lat" and "lng". Using Gson, is it possible to parse this JSON to get those values without creating the whole ...
1
vote
1answer
34 views

Custom JSON deserializer using Gson

I have a problem with parsing a JSON response using Gson. JSON string: response: [ 2, { owner_id: 23972237, album_id: 25487692, title: 'album not new' }, { owner_id: 23972237, ...
2
votes
1answer
29 views

Gson, JsonElement, String comparison in Java

Ok, I'm wondering this could be quite simple and stupid but after a while fighting with the situation I have no idea what is happening. I'm using Gson to handle a few JSON elements. Somewhere in my ...
1
vote
1answer
31 views

Parsing a JSON array to a Java object

I have the following JSON returned by a REST API call. Is it even possible to read this construct into a Java object? here is the JSON data: [ { "dirName": "/", "files": [ ...
1
vote
1answer
41 views

Json array to Java class (deserializing with Gson)

I have Json response (named as jsonResultAsText): { "Title": "Hi all", "IsSecret": false, "Agents": [ { "ID": 3, "Name": "John F" }, { "ID": 7, "Name": ...
1
vote
1answer
41 views

GSON parsing of google places API

I need a little help with creating classes which will be filled with GSON parser. This is the output od autocomplete Google Places API: { "predictions" : [ { "reference" : "CjQtAA", ...
1
vote
1answer
29 views

Deserializing JSON to non-static nested classes using Gson

According to this Gson can deserialize to inner classes. I have the next fragment of JSON string: ... "coordinates": { "coordinates": [106.80552006,-6.22016938], "type": "Point", } ... ...
2
votes
1answer
26 views

How to create GSON custom serializer that writes raw string?

I have a payload class that already has the capability of writing itself to a string in JSON format. Now I would like to return a JSON object containing an array of my payload classes. I am using GSON ...
1
vote
1answer
48 views

com.google.gson.JsonSyntaxException: Expected BEGIN_ARRAY but was STRING

I am facing this error in parsing json data : Expected BEGIN_ARRAY but was STRING at line 1 column 1156 I could'nt find the solution. My json data is : { "project": [ { ...
0
votes
1answer
26 views

Proguard issue while using GSON

I am using Gson in my application and for that, i am using some classes with name as same as the one in using Json. My application works well, But while writing proguard, application crashes, I guess ...
0
votes
2answers
70 views

send request from jsp to servlet using gson

I am developing a web application using JSP, Servlets. I am using gson for sending request from jqGrid to Servlet. Following is my code to send request to Servlet: JSP ...
0
votes
0answers
23 views

Serialize a treemap into arraylist with gson

I have the following chunk of code: Type listOfItems = new TypeToken<ArrayList<Dates>>(){}.getType(); ArrayList<Dates> mContents = new ArrayList<Dates>(); public String ...
3
votes
1answer
41 views

GSON issue with String

String s = "m\\"+"/m\\/m/m/m/m/m"; LinkedHashMap<String, String> hm = new LinkedHashMap<>(); hm.put("test", s); System.out.println(hm+" Hash map = "+hm.toString()); ...
0
votes
2answers
35 views

SelectionKey iterator.remove() throws UnsupportedOperationException and infinite loop

I have a method that opens a connection, queries a site, gets the number of pages and then uses NIO to concurrently retrieve all of the pages. The first query is done using URLConnection and works ...
0
votes
1answer
32 views

Parsing dynamic JSON data with Gson

I'm a beginner Java and Gson user and have been able to apply it to my needs. I now have some JSON data that I need to parse into a spinner as follows: { "lang":[ "arabic", ...
1
vote
0answers
32 views

OK to use JSON output as default for toString()?

@Override public String toString() { return new Gson().toJson(this); } Am I breaking some good practice, "Joshua"-pattern thing, general design pattern or other convention by simply doing this ...
1
vote
2answers
45 views

Parsing JSON using GSON

This is a continuation of my previous question. After getting the JSON request and turning it into a JSON, I am trying to parse the result into Java Object. public class NetClientGet { ...
1
vote
1answer
43 views

Different JSON array response

I have problems parsing two different JSON responses. 1: This is the JSON response I get from a RESTful API: { "gear": [ { "idGear": "1", "name": "Nosilec za kolesa", "year": ...
-1
votes
1answer
65 views

Jackson \ GSON - Pojo to JSON and vice versa. is file \ serialization mandatory?

I'm in need of a JSON - > Pojo - > JSON transformation. I looked into the mainstream libraries Jackson and GSON, Apparently both use: //write converted json data to a file named "file.json" ...
1
vote
2answers
77 views

cant convert json string to regular string array in java

iam trying to convert this json string back to an array but i can't seem to do it ["\"abba\"","\"repaper\"","\"minim\"","\"radar\"","\"murdrum\"","\"malayalam \"","\"turrut\"","\"navan\""] ...
1
vote
1answer
34 views

JSON Field Naming Support in Google json in android

How can I parse below response using Google Json? { "code": 1, "data": { "0": { "name": "test", "expirationDate": "-1", "masterDate": "31\/5\/2013", }, ...
2
votes
1answer
61 views

Android gson serialization issue

I have HttpPost request on my Android application to my .NET Web Api. I am using json data type and gson class in order to serialize my object. Here is my code about serialization: HttpPost ...
1
vote
1answer
39 views

Map JSONArray to object by position

In an API I'm working with I receive a certain part as a plain JSON array instead of a normal key => value pair. Its stupid, but that's what I have to deal with. Example: {"build":29625,"list": [ ...
-2
votes
0answers
19 views

Gson Error in Netbeans while using Stripe API [closed]

I have created simple charge code to test. Everything (Stripe/all the google jars required) has been imported and is in my classpath. import com.stripe.Stripe; import com.stripe.exception.*; import ...
1
vote
1answer
46 views

class A declares multiple JSON fields

i have a class A which has some private fields and the same class extends another class B which also has some private fields which are in class A. public class A extends B { private BigDecimal ...
2
votes
1answer
78 views

Which Java/JSON library supports converting a JSON file that contains comments to a Java class?

My JSON file's content is : { "MJ" : "Michael Jordan", "KB" : "Kobe Bryant", "KG" : "Kevin Garnet" } Now it is easy to convert this file (or string) to a Java class (e.g: java.util.HashMap) if I ...
1
vote
1answer
28 views

Gson Custom Serializer Not Called

I have a class that doesn't serialize properly with Gson (class is just name and HashMap) so I wrote a custom serializer to print the name and the key, value pair from the HashMap. public ...
2
votes
3answers
65 views

How to do Custom Serialization using GSON?

I have a case where I would like to use GSON custom serialization feature. class Student{ public String name; public int rollNumber; public Student(String name, int rollNumber){ ...
1
vote
1answer
58 views

How can i cast LinkedHashTreeMap to string type?

JSON data { "id": 8428514522228612, "name": "Order Acknowledgment", "columns": [ { "id": 7701511984703364, "index": 0, "title": "Order#", "type": "TEXT_NUMBER", ...
-1
votes
3answers
82 views

Sending Json message using gson on android

I want to send a json message over http to a php server.I used the gson library as you can see. Gson gson = new Gson(); String[] data = {"value1", "value2", "value3"}; String json = ...
2
votes
3answers
85 views

NullPointerException : JSON Parsing in JAVA using GSON

I want to parse a JSON File through java using the Api GSON to get the last fields of the JSON file : descriptor.json : { "Teleservice_1" : { "Record_1" : { "method_name" : ...

1 2 3 4 5 26