0
votes
1answer
45 views

List to Hashmap to create API

I have some method that return an object and a count, due to the following SQL request public List<Sales> mostLoyal() { String queryString = "SELECT s, COUNT(s.saleId) as TotalNum FROM ...
0
votes
2answers
32 views

Text file is processed using Hashmap containing List(of maps) as values-How to process?

My text file contains datas like... dept->studentId-StudentData(name and email).. IT-> 1->john->john@ymail.com CSE->2->Santosh->s@gmail.com IT->3->Mike->mike@ymail.com First,I have stored the ...
0
votes
0answers
33 views

How to save a List<HashMap<String,String>> to an SQLite db

I want to save a List<HashMap<String,String>> to my small db. How to achieve it.. I want to use this list in many activities of my app. Is there any other possible way to access this ...
0
votes
2answers
60 views

Hashmap inside a list to process my text file

I have a text file to be read and processed (separated by one tab space) which is something like: GroupNum Id Name Address 1 1 john USA 1 2 mike Uk 2 3 smith ...
0
votes
1answer
40 views

How to send a List<HashMap<String,String>> list to another activity

I was trying to send List> list to another activity. I tried many ways but couldn't. Please help!
2
votes
4answers
95 views

How can I store HashMap<String, ArrayList<String>> inside a list?

My hashmap stores the string as key and arraylist as the values. Now, I need to embed this into a list. That is, it will be of the following form: List<HashMap<String, ...
0
votes
2answers
55 views

show a list of word and definition using hashmap

I am trying to create a simple game with with a list of words using hashmap. what i want to do is. i want to show the user a word from the list in a scrambling way. for example a word like hello would ...
1
vote
1answer
42 views

Java: Issue with Nested Hashmap

I have a nested LinkedHashMap that looks like this: LinkedHashMap<String,LinkedHashMap<String,LinkedList<Long>>> map = new... The issue is that only 1 inner map is added per ...
4
votes
5answers
77 views

Are there any advantages between List<CustomObject> and HashMap <String, Object>

I am trying to implement a solution (in Java 1.6) where i need to store some values (for a set of properties) and thinking in three options considering the following three (Any other idea is of course ...
0
votes
4answers
47 views

Creating a list of strings where each string, is a key, to a list of tuples (as value), in java

How can I create a list of strings where each string points to a list of tuples; In other words each string is a key to a list of tuples (as value)? Each tuple should be of the form : ...
0
votes
1answer
65 views

Simple Adapter to show part of List (made with Hashmap) by keyword

I have but of a problem. I've made a list as following: List<Map<String, String>> ShopsList = new ArrayList<Map<String,String>>(); private void initList() { // ...
-1
votes
1answer
276 views

How to hold data when page is reloading in jsp struts2

I have loading data from database for ArrayList. Then I use that data for updating process. I am search and Load data to arrayList. This is the code for load data when searching. ...
-4
votes
2answers
34 views

Fatal Error that I can't solve-list

while I developing an android application I had an error: "Unable to start activity Component Info :X . RunTimeExcepetion : your content must have a list . View whose ID attribue is ...
2
votes
3answers
57 views

Concurrent Modification Exception in HashMap

I'm writing this program in Java and I'm getting a java.util.ConcurrentModificationException. The code excerpt is given below, please let me know if more code is required. for (String eachChar : ...
0
votes
3answers
52 views

What is the best way to get all elements in a hashmap?

I know I can use .values() and .keyset() to get the respective keys/values on their own (from a hashmap). I am trying to get them together and return that in a get method. Could I use entryset() to ...
0
votes
0answers
83 views

Map and List android

How do i store this List<Map<String,?>> items = new LinkedList<Map<String,?>>(); to a variable array and create a multiple of this. I'm new to this and i'm kinda confuse of how ...
0
votes
1answer
66 views

Insert data to Map, List and ArrayList

I'm a bit new to this Map, Sorry for my noob question.. I know how to make an ArrayList or List and to add data from it, How do i insert data to a ...
-1
votes
1answer
42 views

how to create deep list of string with key and value

there is a way to create list in java (of string) like the following. String , the string in the brackets should be like key val. I saw someting like this List<HashMap<String, String>> ...
1
vote
2answers
171 views

Java data structure that acts like TreeMap + Hash?

I need to enter key-value pairs into a data structure that allows me to retrieve them in ascending order of the key--BUT their may be many keys of the same value. Thus, if the kv-pairs were {10-a, ...
0
votes
4answers
93 views

HashMap iteration/Deletion

I'm trying to process a large amount of data and I'm a bit stuck on the best way to process the final calculation. I have a HashMap. Each Book object has a data value called COUNT that holds how many ...
2
votes
1answer
70 views

Does ConcurrentHashMap implementation use cloning in remove operation?

I was reading an IBM DeveloperWorks article to understand how ConcurrentHashMap is implemented. The section "removal operation" suggests that the removal operation is a two step process: Find the ...
1
vote
1answer
111 views

Morse Code Conversion using Java

I'm trying to learn about hashmaps and 2D arrays in Java. We have an assignment due to have a scanner that accepts a string and converts it to morse code. The code we're using is based of a method ...
0
votes
2answers
66 views

Casting the return from a java reflection method invocation

I am trying to write a generic method that will hash a list of objects based on calling a method through reflection. The idea is that the caller can specify which method will generate the keys for ...
4
votes
6answers
181 views

More efficient than a doubly-nested ArrayList?

I am building a Java backend component that processes a moderate volume of data every day. We have a POJO, let's call it Widget, that has about 10 properties on it. My software must process groups of ...
0
votes
2answers
230 views

Return HashMap added to List<Object>

I have a problem in JAVA when i'm trying to return a HashMap that I have added to a list of type: List<Object>. I know I can use other type of lists, but I need to use List<Object> ...
0
votes
3answers
263 views

How to get two values of string in a single HashMap?

Im new to Android. What i need is?.. Can i get two string values in a single hashmap, its possible. I have two hashmaps,these two hashmap values should i get in another hashmap. How to implement ...
3
votes
1answer
110 views

Scala HashMap of Lists: simpler default?

I need a HashMap of Lists. Normally I do this: val lists = mutable.HashMap[String,List[Int]]() { override def default(key: String) = { val newList = List[Int]() this(key) = newList ...
0
votes
3answers
350 views

iterate list of hashmap in java

I have one hashmap inside hashmap like List<Map> mapList = new ArrayList<Map>(); for (int i = 0; i < 2; i++) { Map iMap = new HashMap(); iMap.put("Comment", ""); ...
1
vote
4answers
267 views

Java and data structures (Map, Hashmap, List, Arraylist, …)

I'm new to Java and Android development and I'm stuck on following problem. My app gets some data from a database which I would like to structure in a following manner: DATA = { RESULT[0] = { ...
2
votes
4answers
67 views

map vs ?? for storing name and score

I used hashmap to store data. The problem is that I just noticed hashmap can't have more than one same key. What else should I use to store data which the data looks like this: Name1 100.0 Name2 ...
0
votes
2answers
114 views

How to add HashMaps with custom objects to an ArrayList

I have a problem when adding HashMaps with custom objects to an ArrayList. Here you are the HashMaps definitions: static Map<Long, Supermarket> supermarkets = new HashMap<Long, ...
0
votes
3answers
124 views

HashMap One key associated to a list

I have a list of objects that contain row data for a table. There are multiple columns in that table but I don't think that's an issue. The logic I need to apply would require only two columns. These ...
0
votes
4answers
146 views

Add a hashmap to an array of hashmaps

I have the following code: ResultSet rs = DB.doQuery("SELECT username,register_ip FROM users ORDER BY joined DESC LIMIT 10"); Map<String,String> botInfo = new HashMap<String, ...
0
votes
7answers
226 views

java: join all hashmaps from an array list

I have an aray list of hashmaps and I'd like to merge these hashmaps into a single one (keys should be unique). How would I have to do it? Can anybody give me a hint?
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 ...
0
votes
2answers
448 views

Put the data from sqlite into hashmap in list form

public class ABC extends ListActivity { static final ArrayList<HashMap<String,String>> list = new ArrayList<HashMap<String,String>>(); @Override public void onCreate(Bundle ...
1
vote
3answers
206 views

java generic method invocation conversion error

I have piece of code I use to generate charts: HashMap<String, List<Ticket>> openedTicketsPerTeam = getOpenedTicketsPerTeam(); How should I write signature of generic method to count ...
0
votes
2answers
219 views

ModCount in map and list

While Debugging the collections in eclispse I just Inspect that there is thing called modCount for example if we debug list we will see while inspecting in debugging what this modCount ...
-1
votes
3answers
53 views

Regarding a list and map

I was doing a research let say I have below array list List list=new ArrayList(); list.add(1); list.add(1); list.add(2); list.add(3); list.add(3); Now as I can ...
1
vote
1answer
70 views

Linking two List Structures Together

I have a two lists. List A and List B. Each element of list A has a list of elements from List B. I have populated the two lists but population of the List within the element of List A is still to be ...
0
votes
0answers
114 views

How to get a child's position within an ExpandableList in Android relative to the entire list?

i have a list like this: -ONE -TWO -THREE when expanded: -ONE ->a1 -TWO ->a2 ->b2 -THREE ->a3 What I would like: I want a child's position within the entire list like this, ...
0
votes
1answer
424 views

List of HashMaps Java

Map<String, List<String>> words = new HashMap<String, List<String>>(); List<Map> listOfHash = new ArrayList<Map>(); for (int temp = 0; temp ...
1
vote
2answers
171 views

Erasing elements from a list inside a hash_map

Im using the following structure: hash_map<string, list<time_t>> When I initially fill the hash map with the information I read from a text file, I have no problem inserting elements to ...
2
votes
2answers
175 views

How to create an associative list in Java?

I am trying to have a user enter a String to search for a value in a list. This works fine, but I also want the String to have a numeric value. This way I can get the certain item in the lists price. ...
0
votes
4answers
117 views

Understanding Java References in Java collections

I am having trouble understanding some simple code relating with Lists and maps. Take the code below as an example: public class test { private Map<Integer, List<String>> myMap ; public ...
1
vote
6answers
1k views

Java Map<Integer, HashMap<String, String>>

I need to have a resultset converted into a Map of Maps. The reason why I'm not using a List of Maps is because I don't want to iterate through the entire List to get a specific row. The problem I am ...
-1
votes
4answers
673 views

How to retrieve a collection of values from a HashMap

I'm writing a function to test if a HashMap has null values. The method .values() SHOULD return a collection of just the values, but instead I receive a map with both the keys and values stored ...
1
vote
4answers
117 views

what to use for this requirement, Array, List, Map,?

While making my program i have come across this requirement that i have to assign unique id's to some Objects that i create. Now i am creating the objects dynamically on GUI, and initially i used ...
0
votes
3answers
67 views

Construct chain of links from list

I have a list of key/value pairs and I need to detect chains in the list where the value matches a key. E.g. from the below there could be 12, 23, 34 or 62, 23, 34 Key Value 1 2 3 4 2 3 6 ...
0
votes
0answers
75 views

I want to put a hashmap in a list and then clear it [closed]

I am facing this problem in my code that is I have a hashmap which I need to put in an arraylist in a loop, and then clear the hashmap so that i can reuse it in the loop itself.. My code is: public ...

1 2