Tagged Questions
1
vote
2answers
35 views
create json file dynamicly with hierarcy data
I need to create similar JSON file structure to the following post but its need to be dynamic,
when I search I found the following post but the solution is specific for entry 1 and entry2
my needs is ...
1
vote
2answers
70 views
Jackson parser json setter to take value as string array
I have below json:
"[{\"movieName\":\"A\",\"Leadactor\":\"\",\"leadActress\":\"\",\"movieTitle\":\"\",\"hero\":\"\",\"heroine\":\"\",\"source\":\"IMDB\"}," +
...
-1
votes
1answer
95 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"
...
2
votes
1answer
91 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 ...
0
votes
1answer
49 views
Json preprocessing performance issue
I have a question here on how to pre process java. I implemented some suggestions and i am able to get it to work. Only concern is performance.
Json pre processing in java
I experimented two ways:
...
0
votes
0answers
139 views
json: Can we avoid writing null properties while serializing objects (can we use @JsonWriteNullProperties(false) for this)?
I'm trying to convert a json object restFBResponse to an object of class Post from Facebook graph-api.
MyPost post = gson.fromJson(restFBResponse.toString(), MyPost.class);
where, MyPost class is ...
5
votes
4answers
225 views
Query a JSONObject in java
I was wondering if somewhere out there exists a java librery able to query a JSONObject. In more depth I'm looking for something like:
String json = "{ data: { data2 : { value : 'hello'}}}";
...
// ...
0
votes
1answer
372 views
Jackson JSON generator creates null JSON values for missing objects
I've started using Jackson as a JSON generator, as an alternative to google GSON. I've run into an issue where Jackson is generating object: null if the object is indeed null. GSON on the other hand ...
0
votes
2answers
79 views
Standard way to read streamed Jsons Java
there is a Java Standard way to read/write Json streams without using Gson, Jackson,... (other json parsers) ?, Currently i have a file like this:
file.conf:
...
0
votes
1answer
101 views
Does Gson have something like @JsonProperty for methods?
Jackson has the @JsonProperty("name") annotation, which can be applied to methods - the return value of the method will be assigned to the "name" parameter in the JSON.
I found out that Gson has the ...
2
votes
2answers
268 views
Parsing a large json in android of 11 MB [closed]
I am facing a problem in parsing a large JSON of about 11MB in android with GSON and Jackson. The issue is that out of memory error exception occurs and also heap size is not enough to accomplish this ...
0
votes
0answers
424 views
JSON Formatting with Jersey, Jackson, & Google GSON using Curl Command
Using Java 6, Tomcat 7, Jersey 1.15, Jackson 2.0.6 (from FasterXml maven repo), & Google GSON 2.2.2,
I am trying to pretty print the JSON String so it will look indented by the curl -X GET ...
2
votes
2answers
234 views
Java JSON library that supports DOM-style access
I'm writing a JSON-style query engine in Java, and it would benefit from the ability to query a JSON document by the DOM path (like you can do in Javascript). I've checked out GSON and Jackson, but ...
0
votes
0answers
100 views
How to wrap the properties of a class as property object using Jackson json?
I have base(abstractElement.class)class and its sub classes(FreeLine.class,StraightLine.class,Circle.class etc). The subclasses will have properties such as line width,color etc. The code for ...
1
vote
0answers
151 views
How to do custom serialization/deserialization using JACKSON?
I am trying to convert the following gson serialization to JACKSON serialization. Please let me know what i need to change to make it work for JACKSON
public class AbstractElementAdapter implements ...
0
votes
1answer
97 views
How to convert from GSON to JACKSON?
What is the equivalent of the below class in jackson?
public class JsonConverter
{
private static final JsonConverter INSTANCE = new JsonConverter();
private Gson gson;
private ...
0
votes
3answers
657 views
Jackson - JsonMappingException due to constructor
I tried to search it over stackoverflow and the rest of the net, but I neither found a good reference, documentation, example, nor solution.
I am having the following exception when trying to ...
0
votes
2answers
730 views
Java - Jackson array mapping
Given the following JSON
{
"obj" : {
"f1" : "blah",
"f2" : "blah",
"f3" : [{"z1" : "blah", "arr" : [{"m1" : "blah", "m2" : "blah"}]}]
}
}
I have tired using ...
1
vote
3answers
565 views
How to parse JSON log file with Streaming API in Java, then output tabulated log file
I have a problem at hand where I am trying to parse large log files stored in JSON format, and then tabulate the data and output it as another JSON file. Following is the format of the log files that ...
0
votes
1answer
893 views
Java to JSON Conversion: JSTL vs Methodical (Jackson/Gson)
I'm a front-end dev with Java familiarity. I'm having a real tough time pulling up performance & development pros/cons for using methodical conversion vs JSTL for converting Java objects to JSON.
...
1
vote
1answer
97 views
Similar to GSON in Jackson for arrays
I am trying to convert an array or List (java) to JSON format. I have seen that in GSON we can do a the following:
data.add("hello");
data.add(someobject);
String gson = new Gson().toJson(data);
...
0
votes
1answer
2k views
Getting entire JSON object with Jackson parser
With GSON, I can write this
JsonStreamParser parser = new JsonStreamParser(reader);
System.out.println(parser.next());
and if the stream consists of JSON objects, it will print the entire object ...
2
votes
3answers
2k views
Changing from Gson to Jackson for JSON parsing
Im currently using GSON to parse a pretty big JSONfile using an inputstream/reader.
The parsing takes about 35 seconds on my android device, i understood from some benchmark test that Jackson ...
0
votes
1answer
421 views
GSON/Jackson - how to parse array of arrays of variable types
I have a JSON looks like:
{"response":[[215,{TypeA},{TypeA},...,{TypeA}],[{TypeB},{TypeB},...,{TypeB}]]};
215 is some integer number, changes in each response, it's not important.
TypeA, TypeB is ...
0
votes
2answers
693 views
JSON Parsing using Jackson/Gson Java
I have the following Json
{
"messages":[
{
"message":{
"body":"Foo",
"username":"XYZ"
}
},
{
"message":{
...
2
votes
2answers
2k views
dump object to String with Jackson
I'm use Gson to debug my application
Gson gson = new GsonBuilder().setPrettyPrinting().serializeNulls().create();
gson.toJson(myObject);
But Gson does complain about a circular reference error when ...
0
votes
2answers
1k views
jersey jackson multiple providers for same type
With Jersey, I am currently using the Gson library to convert my pojo to json back and forth.
However, I've discovered Jackson to be a lot faster so we are switching to this.
I already have a Gson ...
2
votes
1answer
3k views
Using Gson instead of Jackson in Jersey
I have a RESTful service that consumes and produces JSON objects, and I would like Jersey to use Gson instead of Jackson.
How can this be done...?
0
votes
2answers
280 views
Trying to test performance of 2 JSON frameworks - does it look correct?
In my app - I'm using JSON for serializations and up to this point - I was using GSON. Ok, it was kind of slowish especially initial sign in where I load objects.
I explored options and found ...
1
vote
1answer
521 views
Serialize class based on one interface it implements with Jackson or Gson
I have the following:
An interface I1 extends Ia, Ib, Ic
An interface I2.
A class C implements I1, I2. And this class has its own setters and getters as well.
C cInstance = new C():
//Jackson
...
1
vote
2answers
9k views
Parsing JSON using Java/Jackson
I have a small test application I'm writing in Java to parse some JSON from the Reddit API. Some sample JSON I'm looking to parse would be like this:
[
{
"kind": "Listing",
"data": {
...
1
vote
1answer
96 views
Integrate package (JAR) and force my app to use this particular package/instance
Sorry for my terminology, but here is how it goes.
I added GSON package JAR to my Android application and all was well until my app started to fail on some HTC devices - here is summary:
...
1
vote
7answers
2k views
Deserializing Json array into Scala object
I have been having major problems trying to deserialize a JSON array to a Scala object
[{"name":"Cool","city":"College Park","address":"806","id":1},{"name":"Mars ...
3
votes
1answer
2k views
GSON/Jackson in Android
I was able to successfully parse the below JSON string in Android using JSONObject and JSONArray. Have had no success achieving the same result with GSON or Jackson. Can someone help me with code ...
0
votes
2answers
422 views
Map JSON Response to POJO (with different names)
I know there are numerous posts out there for a similar problem, but mine seems to be a bit different. I am reading in a bunch of JSON and would like to build POJO from it, but I don't want to use ...
5
votes
1answer
2k views
json parse performance between jackson and gson
After searched in google, found that jackson has better performance than gson, i plan to replace gson with jackson in my project, but i got a diffrent result when run test code.
private static final ...
0
votes
1answer
2k views
Jackson vs Gson for simple deserialisation
For parsing JSON like this twitter API users/show response I've been using Jackson and Gson Java libraries as candidates to do this work. I'm only interested in a small subset of properties of the ...
0
votes
1answer
619 views
Leave off field names using FlexJson, Jackson, GSON etc
Right now I'm using the org.json JSON library.
JSONArray data = new JSONArray();
for (PkgLoad pkgLoad : list) {
JSONArray row = new JSONArray();
...
1
vote
1answer
684 views
Android : Jackson with ActiveAndroid
ActiveAndroid has a constraint that all its entities need to inherit from a certain base class and need to have a one parameter constructor taking in the Context (from the activity) as the input. [Not ...
3
votes
5answers
3k views
json deserialization problem
Have an array, when the size is 1, the json data I received does NOT contains []; like
{"firstname":"tom"}
when the size is larger than 1, the data I received contains [], like
...
3
votes
1answer
751 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:
...
2
votes
2answers
4k views
How to convert a Date between Jackson and Gson?
In our Spring-configured REST-server we use Jackson to convert an object into Json. This object contains several java.util.Date objects.
When we attempt to deserialize it on an Android device using ...
80
votes
4answers
38k views
Jackson Vs. Gson [closed]
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 ...
