Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
1k views

How is the implementation of LinkedHashMap different from HashMap?

If LinkedHashMap's time complexity is same as HashMap's complexity why do we need HashMap? What are all the extra overhead LinkedHashMap has when compared to HashMap in Java?
7
votes
2answers
3k views

java linkedhashmap get first or last entry

I have used LinkedHashMap because it is important the order in which keys entered in the map. But now I want to get the value of key in the first place (the first entered entry). Should there be a ...
6
votes
1answer
102 views

Shrink LinkedHashMap in Java

How can you shrink a LinkedHashMap? I overrode the removeEldestEntry method, but this method is only called once when a new value is inserted. So there is no change of making the map smaller this way. ...
4
votes
5answers
2k views

Java LinkedHashMap: what's the difference in these two?

EDIT: The entire code and database creation script can be found from http://gitorious.org/scheator . The database script is in Schema/. I have the following Java code: A LinkedHashMap defined in an ...
4
votes
3answers
2k views

Does entrySet() in a LinkedHashMap also guarantee order?

I am using a linkedHashMap to guarantee order when someone tries to access it. However, when it comes time to iterate over it, does using entrySet() to return key/value pairs guarantee order as well? ...
3
votes
3answers
59 views

How to traverse Linked Hash Map in reverse? [closed]

Possible Duplicate: Iterating through a LinkedHashMap in reverse order How to traverse Linked Hash Map in a reverse order? Is there any predefined method in map to do that? I'm creating it ...
3
votes
1answer
464 views

Jackson JSON + Java Generics get LinkedHashMap

I had a question who is similarly some questions at stackoverflow but I get not really an answer for my problem. I use the objectmapper of jackson and want to parse a JSON string like that to an List ...
3
votes
2answers
115 views

How can I iterate starting at a particular key in a LinkedHashMap?

If I have a data structure Stock { String Symbol; LinkedHashMap<Date,Double> DateForPrice; } I know in the LinkedHashMap, I can get the stock price of specific date without traversing ...
3
votes
2answers
375 views

Multi-dimensional byte arrays with LinkedHashMap… Is there a better way?

I'm VERY new to Java Programming, so please forgive my newbish questions :). I am using a LinkedHashMap as a file cache for an application I am modifying for the sake of assisting development. I am ...
3
votes
5answers
3k views

How to keep the order of elements in hashtable

I have a hashtable . values() method returns values in some order different from the order in which i am inserted.How can i get the values in the same order as i inserted?Using LinkedHashmap is an ...
3
votes
2answers
4k views

How to sort a LinkedHashMap by its value class's field?

I use the following lines to sort a LinkedHashMap, but not all items are sorted, anything wrong ? LinkedHashMap<String,PatternData> statisticsMap; // fill in the map ... ...
3
votes
3answers
2k views

“LinkedHashMap” in C# 3.0

I wonder if there is a counterpart to java.util.LinkedHashMap in C#? (ie. the elements are (re)ordered automatically if I access an element. (boolean accessOrder) ).
2
votes
3answers
208 views

Most convenient way to get the last key or value in a LinkedHashMap?

LinkedHashMap description says "it maintains a doubly-linked list running through all of its entries" so I'm wondering how to get the last entry or key entered? Can I confidently downcast .values() to ...
2
votes
2answers
100 views

How to Iterate Through Multiple Maps

So essentially, I have two hashmaps, one containing the following values: rId33=image23 rId32=image22 rId37=image2 And the other containing this data: {image2.jpeg=C:\Documents and ...
2
votes
3answers
937 views

Get next item in LinkedHashMap?

I have the first key/value pair in a LinkedHashMap, which I get from a loop: for (Entry<String, String> entry : map.entrySet()) { String key = entry.getKey(); String value = ...
2
votes
1answer
302 views

Does a HashMap retain the order of its elements on the next read if it is constructed and “filled” as a LinkedHashMap?

Suppose I have a Java method that returns a HashMap object. Because a LinkedHashMap is a subclass of HashMap, I can return a LinkedHashMap from this method just fine. On the next "read" action (no ...
2
votes
6answers
2k views

How to implement ConcurrentHashMap with features similar in LinkedHashMap?

I have used LinkedHashMap with accessOrder true along with allowing a maximum of 500 entries at any time as the LRU cache for data. But due to scalability issues I want to move on to some thread-safe ...
2
votes
5answers
3k views

What are the pros and cons of LinkedHashMaps vs. LinkedHashSets?

Could someone explain the main benefits for choosing one over the other and the detriments that come with that choice?
2
votes
3answers
5k views

How do I get a keyIterator for a LinkedHashMap?

By looking at the source code for LinkedHashMaps from Sun, I see that there is a private class called KeyIterator, I would like to use this. How can I gain access?
1
vote
3answers
56 views

java collections - keyset() vs entrySet() in map

I put a string array elements is a map where elements of string array is key and frequency of word is value , eg: String[] args = {"if","it","is","to","be","it","is","up","me","to","delegate"}; ...
1
vote
2answers
87 views

How preserve order of LinkedHashMap while serializing to GWT AutoBean?

I've tried using Map, HashMap and LinkedHashMap as a type for AutoBean factory and always after serializing it's changing initial elements order. I don't want to send additional ArrayList that will ...
1
vote
1answer
72 views

Anyone know of a good LinkedDictionary/Hashed LinkedList?

I am in need of a Generic collection that is somewhere in between a Dictionary and LinkedList. I want to be able to: Access elements by key Access previous and next elements I've taken a look at ...
1
vote
1answer
101 views

LinkedHashMap in Perl

Is there some data structure in Perl like LinkedHashMap in java? Or something LRU data structure in Perl Update:@TLP Basically I'd like to have Hashtable data structure but also I can keep the ...
1
vote
5answers
985 views

Why doesn't LinkedHashMap provide access by index?

From Javadoc: Hash table and linked list implementation of the Map interface, with predictable iteration order. This implementation differs from HashMap in that it maintains a doubly-linked list ...
1
vote
3answers
230 views

Is this usage of synchronizedMap thread safe?

I have a singleton class, that has a map which can be accessed by multiple threads at the same time. Could somebody please check the code below and tell me if its thread safe? (note: I dont plan to ...
1
vote
3answers
109 views

Collection.unmodifiableMap iteration order

Does Colelction.unmodifiableMap safeguard the iteration order? I was trying newMap.put(key,Collections.ModifiableMap(oldMap)) Then when I do newMap.get(key) and iterate, iterate order seems to ...
1
vote
2answers
464 views

removeEldestEntry overriding

How can I override removeEldestEntry method to saving eldest entry to file? Also how to limit the size of a file like I did it in LinkedHashMap. Here is code: import java.util.*; public class level1 ...
1
vote
1answer
292 views

Refreshing a LRU cache

I am implementing a cache using a map extended from LinkedHashMap (so I can implement removeEldestEntry). The old implementation used a regular hash map, refreshed at a set interval. I was wondering ...
1
vote
4answers
877 views

cast LinkedHashMap to HashMap in groovy

How do I convert LinkedHashMap to java.util.HashMap in groovy? When I create something like this in groovy, it automatically creates a LinkedHashMap even when I declare it like HashMap h = .... or ...
1
vote
2answers
2k views

serialize/deserialize a LinkedHashMap (android) java

So i want to pass a LinkedHashMap to an intent. //SEND THE MAP Intent singlechannel = new Intent(getBaseContext(),singlechannel.class); singlechannel.putExtra("db",shows1);//perase to ...
1
vote
3answers
334 views

permute data for a HashMap in Java

i have a linkedhashmap and i need to permute (change the key of the values) between 2 random values example : key 1 value 123 key 2 value 456 key 3 value 789 after random permutation of 2 values ...
1
vote
3answers
528 views

How can I add the keys of a LinkedHashMap to a JList?

I have a LinkedHashMap<String,Object> and was wondering what the most efficient way to put the String portion of each element in the LinkedHashMap into a JList.
0
votes
1answer
109 views

Load a lot of properties file from a single text file and insert into LinkedHashMap

I have a file which contains lots of properties file line by line may be around 1000 and each properties file will be having around 5000 key-value pair. For eg:- Sample Example(abc.txt)- ...
0
votes
5answers
110 views

Is that right way to iterate LinkedHashMap?

I am trying to iterate LinkedHashMap but its not coming in right i have attached the code below for (int g = 0; g < list_Fields.size(); g++) { System.out.println("Hello ListOFFields:" + ...
0
votes
1answer
38 views

LinkedHashMap to Pojo

I have a variable that is a linked hash map. Its like: "message": "something" "code": "0" and I have a pojo: String message; Integer code; //getters and setters Is there any library that ...
0
votes
2answers
203 views

How to add element at specific index/position in LinkedHashMap?

I have an ordered LinkedHashMap and i want to add element at specific index , say at first place or last place in the map. How can i add element in LinkedHashMap at an specific position? Even if I ...
0
votes
2answers
134 views

Java - find position of a string in a List of storage object

I guess the title of this questions says it all, or says nothing... After couple of hours of googling, trying things and reinventing Java I decided to ask you. I have this storage class: class ...
0
votes
2answers
63 views

GWT LinkedHashMap.clone() issue

Faced an interesting issue recently. I've catched ClassCastException while executing this code: LinkedHashMap<Tag, Boolean> tags = new LinkedHashMap<Tag, Boolean>(); ... ...
0
votes
0answers
29 views

problems one editTextSelected of two

I have create a xml file. This xml file contain a few EditText. I call this xml file in a ListView many times. Here is the code to call and send information in this xml file ...
0
votes
0answers
229 views

NullpointerException using put method on a LinkedHashMap

I'm using a LinkedHashMap as cache. I've overridden removeEldestEntry in order to force this cache to have a fixed size. Older values will be removed. This is how my map is initialized: <!-- ...
0
votes
2answers
439 views

How to retrieve value from linkedhashmap using iterators in Struts2…?

I have function which return LinkedHashMap in Struts2 and i just came to know that we cannot use for loop in struts2 instead we have to use Iterators, and am new to struts can any on help me to ...
0
votes
4answers
176 views

search for a key value pair in a list of hash maps

I am reading two csv files containg a set of attributes File 1 attributes = name, class, rollno, File 2 attributes = rollno, city,town I need to match the two files and for every matching rollno ...
0
votes
1answer
175 views

What's the proper represantation of LinkedHashMap in JSON?

When I serialize my LinkedHashMap<String, String> using GSon, I get {"b":"a","a":"1","c":"2"} and after deserializing I get back the elements in the right order. So everything works fine, but ...
0
votes
3answers
599 views

removeEldestEntry

How can I override removeEldestEntry method to saving eldest entry to file with help of FileOutputStream, DataOutputStream and writeObject(). Code: import java.util.*; public class level1 { private ...
0
votes
1answer
252 views

Sending LinkedHashMap to intent

I want send LinkedHashMap to another Intent. But I don't known what method for extras is allowable. Bundle extras = getIntent().getExtras(); LinkedHashMap<Integer, String[]> listItems = ...
0
votes
2answers
385 views

Is there a way to implement an array of LinkedHashMap?

I am trying to implement an array of LinkedHashMap but I don't know if it's possible... For the moment my code looks like as follows : public class LHMap { public static void main(String[] ...
0
votes
3answers
2k views

Does Java's LinkedHashMap maintain the order of keys?

When LinkedHashMap.keySet() is called, will the order of the Set returned be the same as the order the keys were added in?
0
votes
1answer
296 views

Grails Object --> LinkedHashMap converter

Like the JSON converter, is there any easy way to convert an object into LinkedHashMap. The JSON string is constructed as def query = new JSON(cmd).toString() anything similar.. thanks..
0
votes
3answers
2k views

Soft reference LinkedHashMap in Java?

Is there softreference-based LinkedHashMap in Java? If no, has anyone got a snippet of code that I can probably reuse? I promise to reference it correctly. Thanks.
-6
votes
3answers
71 views

I am getting error message like IndexOutOfBoundsException [closed]

I am getting index out of bound error when I execute the following code, particularly in the line row = (LinkedHashMap) list_Fields.get(i) in the following code snippet: for (int g = 0; g < ...