Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
17k 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", ...
0
votes
0answers
34 views

Need clarification between JSON and java map

I'm developing an app in android. I have to build an API in PHP which serves the following JSON [{"id":"1","number":"2"},{"id":"3","number":"4"},{"id":"5","number":"6"},{"id":"7","number":"8"}] I ...
0
votes
2answers
197 views

java.lang.String cannot be cast to java.util.Map

I'm new to Java, but not new to programming, so as my first project I decided to create a .txt-.csv parser for someone at work. I read each line in the .txt file and separate it into separate Maps for ...
0
votes
0answers
139 views

How to get Nested java.util.Map iBatis

I have a table called properties and it has got three columns.. 1) Module Name 2) Property Name 3) Property Value How do I get a Map in such a way that Outer Map's key will be Module name and the ...
0
votes
2answers
332 views

Existing File based implementation of java.util.Map

I'm working on a project that uses custom Map<String, Entry> (where Entry is a pair of ints) implementation based on B-tree to store from 10 to 100 millions of records, the code for this class ...
0
votes
0answers
347 views

JAXB binding to a Map error compiler was unable to honor this javaType customization

XML Schema <?xml version="1.0" encoding="UTF-8"?> <schema elementFormDefault="qualified" xmlns="http://www.w3.org/2001/XMLSchema"> <element name="JMSMessage"> ...
0
votes
1answer
408 views

Creating java.util.Map in Android

I want to create a java.util.map in android from a resource. I want to do this because I have a lot of entries to populate into the java.util.map and I want to store the values in the res folder of ...
0
votes
4answers
758 views

java.util.Collections$UnmodifiableMap problem : code included

I am building a facebook platform web app using GWT and hosting it on App Engine. I am adding validation code that uses supplied query string parameters in the callback url. GWT allows me to get ...