-3
votes
1answer
43 views

How to convert string to JSON in java script? [closed]

I have a hashmap generated string value that I passing from a java class to a JavaScript function. I need to convert it to JSON. The string looks like this: [{name= joe, age=30, gender=male}, ...
3
votes
1answer
57 views

Javascript: access an object property whose name starts with a number

I'm creating a Javascript / jQuery application. I need to process a JSON response that represents a HashMap, like this: { "accounts": { "MediaFire": { "provider": "MediaFire", ...
0
votes
1answer
52 views

retrieve data from a multidimensional JSON map in JAVA

I am Developing an application using Spring MVC and JSP, what am trying to do is fetch some data from a URL, the URL's data is in JSON encoded multidimensional map. For Example: {"RT":"32", "HED":{ ...
0
votes
2answers
65 views

How to organize extracted values when working with jsoup?

How do you guys store the values extracted using jsoup in a way where it can be easily readable? So if you have an HTML code like below. <td width="200">country1 </td> <a ...
2
votes
2answers
78 views

Using JSON to write an array of hashes to a file?

Currently I am doing this: badLinks = Array.new badLinksFile = File.new(arrayFilePath + 'badLinks.txt', 'w+') badLinksFile.puts badLinks.to_json The array badLinks contains the hashes and is: ...
0
votes
3answers
259 views

JSONObject from HashMap - Cast to String failed

I need to create a JSONObject from a HashMap of a custom class's toString and a float value. I tried the code below hoping that it would just work: public class MyClass { ... public String ...
0
votes
2answers
152 views

solr json parsing with java

I am searching through solr. it gives me response in json. like following: {response {numfound:# , docs{ [ { id="#" model="#" } { id="#" model="#" } ] } } I ...
0
votes
1answer
136 views

Json String to HashMap [duplicate]

I am trying to convert a Json String to a HashMap but it is not working. My code: ObjectMapper mapper = new ObjectMapper(); Map<String,Object> map = mapper.readValue("Json String ...
1
vote
1answer
153 views

Scala 2.10: Array + JSON arrays to hashmap

After reading a JSON result from a web service response: val jsonResult: JsValue = Json.parse(response.body) Containing content something like: { result: [ ["Name 1", "Row1 Val1", "Row1 ...
0
votes
0answers
63 views

how to get selective objects when parsing JSON with GSON

Suppose, I have a HashMap with following structure: public class MyHashMap { String key, Update valueObject } Assuming I created JSON with the help of GSON library as following: 1 : first, 2 : ...
0
votes
1answer
91 views

Retrieving a HashMap's key which is stored in JSONArray

I have a HashMap as follows: Map<String, String> myMap = new HashMap<String,String>(); myMap.put("apple","mac"); JSONArray listOfEntities = new JSONArray(); listOfEntities.put(myMap); ...
0
votes
1answer
45 views

error while parsing json which is obtained from Gson

I have converted the Hashmap to json using GSON and the json string is like following: ...
-1
votes
1answer
226 views

After retrieving JSON elements dynamically, how to remove duplicates values? Arraylist? HashMap?

I have suggestion saying storing the elements in arraylist then do a comparison, and i also hear people suggesting to use HashMap. However, i am very very new to Java, i got no idea what is arraylist ...
0
votes
1answer
435 views

Create hashmap for JSON in javascript/jquery

Is it possible to generate hashmap for JSON object in javascript/jquery? I've complex and big JSON object. I've to loop through it to filter data based on timings. What is will be best and optimum ...
0
votes
1answer
135 views

Android: Merging JSON and HashMap data

I've JSON data from facebook: String response = facebook.request("me/friends?fields=username",bundle,"GET"); And data from the user's contacts: ArrayList<HashMap<String, String>> data ...
0
votes
4answers
112 views

HashMap to JsonSting?

I am working on a GWT application. I want to convert a hashMap to JSON String and send it to GWT server My HashMap is like HashMap<String, CustomProperties) CustomProperties is the class with ...
0
votes
1answer
115 views

iterate over a list and arrange data

I am getting a list of data in the form of List object from database which contains data as field_id value dt_updated 1 3 jun-6 2 5 jun-5 1 2 jun-3 3 5 ...
1
vote
1answer
116 views

java dynamic attributes table

I am developing a java application which needs a special component for dynamic attributes. The arguments are serialized (using JSON) and stored in a database and then deserialized at runtime. All ...
-1
votes
2answers
220 views

ArrayList<HashMap<String, String>> has no values

My ArrayList<HashMap<String, String>> songslist has no values in it. In my doInBackground method i have for-loop that should fill this ArrayList. The Strings "id", "interpret"... have also ...
4
votes
1answer
207 views

jsonobject IllegalAccessException can not access a member of class java.util.HashMap with modifiers “private”

I am getting the following error while creating a JSONObject: Caused by: java.lang.IllegalAccessException: Class org.json.JSONObject can not access a member of class java.util.HashMap with modifiers ...
0
votes
2answers
498 views

How to Get a ListView Item with Android onItemClick?

This is a continuance from a SO Q here but I am still missing something. I dont know how to get a item that was mapped out from a JSONObject for a list view. The HashMap key value is: ...
0
votes
2answers
309 views

Android SimpleAdaptor NPE

I'm having issues inflating JSON object data into my ListView fragment. The data is getting pulled from a database and is converted into a JSON array via PHP then to JSON Objects. Everything is ...
-1
votes
1answer
127 views

Arraylist mapped to Hashmap

While parsing a JSON file something like this: { "heading1" : [ { "heading2" : { "subhead2" : { "value" : "value<heading2>" } }, "heading3" : [ ...
0
votes
4answers
8k views

JQuery $.ajax() post - data

I am still quite new to JQuery and am having difficulties with using the $.ajax() function. I am attempting to send data to a java servlet for processing. The data will have a variable length and be ...
1
vote
2answers
360 views

Android: Convert web service json output into java hashmap

I have the following output, where wsResponse.get("result").toString() = {"status":1,"result":{"2011":102003,"2010":100003,"2009":98723,"2008":129023}} I'll like to create a hashmap where the years ...
1
vote
1answer
332 views

Unwanted Json result using mybatis result with hashmap

my sqlmap.xml <select id="getList" resultType="hashmap"> SELECT A,B,C,D FROM MYTABLE </select> result example A B C D john 123 math 100 jade 456 ...
0
votes
1answer
994 views

Iterate recursively through deep HashMap

I have a JSON string that resembles the following: { "foo" : "bar", "id" : 1, "children":[ { "some" : "string", "id" : 2, children : [] ...
0
votes
2answers
838 views

How to create a complex JSON using HashMap in android?

I am facing a problem creating a Json which is actually a complex one and i need to create it through HashMap only..I was actually looking for some recursive function that could be a best solution to ...
1
vote
2answers
197 views

Json files in android

I have a set of offline data in JSON file which i kept in res->raw folder and parsed. I started parsing it using JSONArray and JSONObject and mapped 3 interlinked files using HashMap and Vector. But ...
0
votes
1answer
649 views

Android Project - Saving JSON array to HashMap and Retrieving Map Values

I am a complete noob with HashMaps and have spent the better part of a week trying to find what I need. I am successfully parsing a JSON response from an HTTP request. What I'm having trouble with ...
1
vote
1answer
462 views

Accessing HashMap action variables using JSONObject in JSP file

I am working with Struts2 with java action class and view JSP file. My Action class has a variable named: HashMap<Integer, Boolean> pcksHavingFet; List<pck> pcks; int fet; In pcks, ...
0
votes
0answers
323 views

HashMap containing Array which contains a Object - confusion deluxe

I've some problems with a some JSON output which is stored in a HashMap. For converting the JSON output (comes form a API from the web) to HashMap I'm using a solution from stackoverflow (can't find ...
1
vote
4answers
6k views

Jackson: deserialization of Map

I'm using Jackson to deserialize a json file (that I serialized with jackson). The json is a simple HashMap, but the mapper is complaining when I try and deserialize. ...
0
votes
1answer
212 views

Add an element in an existing HashMap

The folowing code takes elements with assistance of a json parser. My problem is, when i find a same value then i want to put an new element (eg "title2") in the existing hashmap with the same value! ...
1
vote
2answers
543 views

Android == json to hashmap problem

i have json array . when i am decode json to hashmap at that time hashmap take last value of json aary here my code QjArray = new JSONArray(Questionresult); JSONObject json_data = ...
0
votes
1answer
150 views

Most efficient Many-Many object mapping (in JSON)

I need to represent a many-many object mapping between two different groups of objects using JSON. For example's sake, lets say my first set of objects is "students" and the second is "courses". Each ...
9
votes
4answers
4k views

Is the order of elements in a JSON list maintained?

I've noticed the order of elements in a JSON object not being not the orginal order. How about the elements of JSON lists? Is their order maintained?
2
votes
2answers
208 views

Returning hashmap objects instead of explicitly defined dto instances (bad practice?)

I found out that since JSON doesn't make a difference between hashes and objects, I can bypass the "law" of always sticking to dto classes, and instead return an "on-the-fly" hashmap, or a list of ...
1
vote
1answer
750 views

ListView displaying only the final element of a ArrayList(HashMap)

I have an activity class that gets a JSON string by making a query. I parsed the string into a ArrayList(HashMap(String, String)). I am passing this to a ListView. The problem I am facing is while ...
-1
votes
1answer
153 views

Ruby: Understanding Hash from Rufus-Scheduler

I am writing an app that is utilizing the Rufus-Scheduler Ruby Gem. This is what a returned hash looks like when display ALL running jobs... {"Rufus::Scheduler::EveryJob_2154902980"=>#, @jobs=[#, ...
2
votes
4answers
1k views

Getting data from JSON

I'm trying to get the values out of this JSON string but I'm having a hard time achieving this. {"DebugLogId":"1750550","RequestId":"17505503","Result": ...
1
vote
1answer
415 views

Passing a HashMaps value's to a url

I have data stored in HashMaps and I would like to pass this data to a url but I want it to remained grouped together. I am thinking of serializing the HashMaps and then passing that data to PHP and ...
0
votes
2answers
2k views

save data to SQLite from json object using Hashmap in Android

Hello Everyone I am newbie in Android, I need to parse json object and display it in listView and at the same time to save those data in SQLite, but whenever I run the project exception is caught ... ...
2
votes
2answers
2k views

JSON Decode Custom Class with HashMap member using GSON in Java

I have the following class: class IndexItem { private String word; private HashMap<String, Integer> docs; private Integer total; public IndexItem(String word) { ...
0
votes
3answers
1k views

JSON deserialization using GSON skips data members from a hashmap within a hashmap

I'm using GSON to deserialize some JSON files. Here's the deserialization method I've written, I read the JSON file and store the whole thing as a string which I pass to this method. This method ...
1
vote
1answer
2k views

Json with java hashmap

I have hashmap object, Map testData=new HashMap(); testData.put("test","test1"); I am able to convert this map using json file with Gson library. I know how to get that data using jQuery getJSON. ...
2
votes
2answers
7k views

Java and json jackson problem

i have this little code, and i'm trying to convert a json string to a map. String json = "[{'code':':)','img':'<img src=/faccine/sorriso.gif>'}]"; ObjectMapper mapper = new ObjectMapper(); ...
3
votes
1answer
700 views

JSON Serializer for arbitrary HashMaps in Voldemort

I am trying to set up the configuration for Voldemort key-value store. Now, I'd like to be able to store arbitrary hashmaps in it, but I haven't found the way to do so (or if it is possible). ...
8
votes
4answers
4k views

Java HashMap vs JSONObject

I am wondering about the performance of Java HashMap vs JSONObject. It seems JSONObject stores data internally using HashMap. But JSONObject might have additional overhead compared to HashMap. Does ...
26
votes
8answers
35k 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 ...

1 2