-1
votes
1answer
36 views

Trying to generate table from JSON file with bean tags embedded in HTML

I am trying to generate a table of data from a JSON file using Javascript but am having difficulty because of the bean:write tag. The bean: is getting removed, so only <write name="offenderCountVO" ...
0
votes
1answer
166 views

Using JSONArray with List of beans containing lists

I am trying to convert a List of java beans to a JSON string using json.org's JSONArray object constructor. Here is the bean: package jackiesdogs.bean; import java.util.*; public class UploadLog { ...
3
votes
1answer
151 views

Receive an integer or a list of integers with the same parameter

I have a problem. I am writing a restful API. It is possible to add/remove Items to/from a group. To do that I have to send a POST-Request to a specific URL. The request is shown below. This works ...
0
votes
1answer
146 views

How to convert polymorphic json string to java bean class

How can i map json to bean class with polymorphic data type i have three pattern of json statement { actor:"ashok", verb:"completed" } or this { actor:["ashok","kumar"], ...
1
vote
0answers
25 views

JsonServiceExporter Logging

I would like to log all JSON requests and responses for the following bean: <bean name="/RPC.json" class="com.googlecode.jsonrpc4j.spring.JsonServiceExporter"> <property name="service" ...
0
votes
1answer
1k views

How to map JSON object in Spring MVC?

I am studing the Spring MVS Showcase dowloadable from di STS dashboard. I am studing how Spring mapp the request and I am having some problem to understand the following thing: I have this form with ...
1
vote
1answer
717 views

Gson force use int instead of double

Hi can i configure gson that he use int instead of double got data like: {fn: chat, data: {roomId: 1, text: "Some brabble"}} I got a PacketClass to deserialize it to: public class DataPacket { ...
0
votes
1answer
95 views

how to parse a json file via jackson?

I am using Jackson to parse a JSON object. It works perfectly but in bean class one of the member variables is dynamic. This means sometimes my json attribute returns an array of strings and ...
0
votes
1answer
207 views

Can you help me unmarshall this JSON object into a javabean?

I need to send the following JSON structure to my JAX-RS service. It's nested a level, if that's the correct term. { "catalog" : [ {"price":"100","sku":"123456"}, ...
2
votes
1answer
114 views

Can a javabean have methods and non-primitive types as its properties?

Sorry this is probably super basic. But in all my javabean examples, I've not seen anything beyond an "int" and "String" as javabean properties. What if I had a Person bean, and I wanted a ...
-1
votes
1answer
605 views

How to get the details of the user using restfb.?

I am trying to get the lastname of my profile using restfb.But but each time the username is returned as null.I already have the acess token and permissions.I guess t some problem with the JSon object ...
1
vote
1answer
407 views

Jackson : avoiding exceptions due to unmodeled fields

I have some beans, and they model (explicitly) the core data types in a JSon. However, sometimes the Jsons im reading have extra data in them. Is there a way to annotate/define a Bean in jackson ...
0
votes
2answers
1k views

How to read json or xml file using java servlets? [closed]

I am using NetBeans and I am going to create a web based app which processes any xml and json file according to some tools. Until now, I ve created a basic site using html and I also have some java ...
1
vote
1answer
363 views

Decoding java objects in python

Is it possible to decode java objects in python? I know the structure of the java class that returns the data. The data is returned with the header of 'Transfer-Encoding: chunked' Or do I need to ...
2
votes
1answer
96 views

Marshalling JavaBeans to several formats

I've got simple JavaBeans objects which represents data in my database. I want to transform this to several formats(XML, JSON) to share it to my clients and I also need reverse transformation. What ...
1
vote
2answers
582 views

How to convert from hibernate SQLQuery result to JSON

I have a problem, I'm trying to convert an SQLQuery object result (from Hibernate) to a JSON. SQLQuery q = session.createSQLQuery("SELECT * FROM table"); List<javaBean> list = q.list(); ...
1
vote
2answers
470 views

how to map Json data into java beans?

i have some JSON data from server and i want to make java beans out of it. can anybody help? "recent_data":{[ "data_number":<data NUMBER>, ...
0
votes
2answers
442 views

how to create data members for bean, to be used to parse JSON data using Jackson parser (or similar)

I read some tutorials that say that a simple bean should be defined with getter and setter methods representing the JSON data in a systematic way. Given below is the data that I will have to parse- ...
3
votes
3answers
3k views

Accessing Javascript variables from JSF

I have a JSF file that needs to get populated from the data I get from the JS function that I get from Ajax call to a web-service. The latter part works like a charm. I am able to retrieve the JSON ...
1
vote
1answer
2k views

Map json data to java bean

Java: Json library to map json data to java bean. As beanutil's describe and populate method is there any java library which takes input json object and respective java bean and map json data into ...
7
votes
2answers
507 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': ...
40
votes
13answers
34k views

Json <-> Java serialization that works with GWT [closed]

I am looking for a simple Json (de)serializer for Java that might work with GWT. I have googled a bit and found some solutions that either require annotate every member or define useless interfaces. ...
9
votes
6answers
40k views

List<Map<String,Object>> to org.json.JSONObject?

List<Map<String, Object>> list = new ArrayList<Map<String, Object>>(); Map<String, Object> map = new HashMap<String, Object>(); map.put("abc", "123456"); ...