0
votes
2answers
31 views

Java (HashMap) - How to save and load an entrySet()?

I have 2 hashmaps and I want both to be saved when the menu button is clicked, and I want to be able to load them (In the example I'm saving just one). void saveHash(HashMap<String, Object> ...
0
votes
2answers
37 views

Finding a key in a hashmap [duplicate]

i have created a hashmap with Color Objects as keys. My source code looks like this: HashMap<Color,Integer> hm = new HashMap<Color,Integer>(); Now i would like to check if there is ...
0
votes
2answers
40 views

inputting key/values of hashmap into an object

Lets say I have the following hashmap setup in my program.. I want to take the inputs of the hashmap and store them into an object. The current hashmap listing is too long to put into main code so I ...
3
votes
5answers
66 views

Most efficient key object type in a hash map?

When using a HashMap, how much does the object type matter for element retrieval when it comes to speed? Say I use a loop to iterate through possible keys of a large hash map. What would be the most ...
-1
votes
7answers
122 views

JAVA: Given a Map <String, Set>, how do I fill the set given a string? [closed]

Keys: "apple", "orange", "grape", etc. Each set will contain random numbers: 1, 2, 3, 4, 5, 6, 7, 8, 9 I need to create a Map (HashMap or TreeMap) that has Strings for keys and sets for the values. I ...
2
votes
5answers
119 views

C++ std::hash_map: What is the key's role

Both maps and hash_maps are designed so hold pairs of <key, data>. It's clear to me why the map should have a key for it's sorting (more precisely: treeing), but I don't understand why hash_maps ...
1
vote
3answers
98 views

HashMap Object key

In Java, I have a class: public static class Key { int[] vector = null; private int hashcode = 0; Key (int[] key) { vector = new int[key.length]; // here is the problem ...
-1
votes
4answers
74 views

HashMaps/HashTable explanation [duplicate]

I have read up quite a bit on these and am still rather confused on one aspect. HashMaps take in a K,V pair. Why is this necessary? For example I want to add "abracadabra" to HashMap myMap. Would it ...
0
votes
5answers
138 views

Java Map with multiple keys, and a count as value

I'm working on creating some graphing software for a small business. They gave me a report of their sales last year, and on this report it shows the "timestamp" and the item or "sku" for each ...
0
votes
3answers
74 views

Can I have a non-empty hashmap with no keys in it?

I had a weird and unexpected behaviour on a java HashMap, on a part of code that is solely for testing. To try and set a unique ID to an object before storing it in session I use a if{}else{} ...
0
votes
3answers
209 views

How to make java HashMap work properly with custom Key type?

I think my question is quite simple, however i couldn't find the solution so I decided to ask here. What i need is to make a HashMap with a custom Key type like this: HashMap<Pair<Integer, ...
3
votes
3answers
117 views

Multi-key Map in Scala

How can I create a Map in Scala which does not only take a single parameter as key, but rather two or three. val map = //..? map("abc", 1) = 1 println(map("abc", 2)) // => null println(map("abc", ...
0
votes
3answers
232 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 ...
1
vote
2answers
122 views

custom HashMap-Key (Java) slows down performance extremely

this is my first question here, but i hope i will provide all the needed information. If NOT, please let me know! My Problem: I tried to improve my backtracking-algorithm by adding a HashMap to ...
0
votes
2answers
124 views

java update hashmap

I have a problem with changing values in an HashMap>. First I do this: HashMap<String, ArrayList<Integer>> countries = new HashMap<>(); ArrayList<Integer> medals = new ...
0
votes
2answers
127 views

JSF HashMap wrong output with <c:foreach after removing one item from the map

I am involved in a JSF project and I am trying to make a view for a shopping cart. a user's cart can contain tickets which are stored in a hash map (key = id, value = quantity) in the cartBean. In the ...
0
votes
1answer
115 views

Add value of existing key to new one in c++ hashmaps

I wish to insert integer data in hash maps in C++ using integer keys only. The raw data I have will have many keys repeated. I wish to insert a value in map if the key doesn't exist. However if key ...
0
votes
2answers
167 views

How to get the number of occurrences of a key in HashMap?

I am have the Hashmap like this, HashMap<String,String> epnSource = new HashMap<String, String>(); Now I have added the keys/values like this, epnSource.put("10.3.2.227","EPN1"); ...
1
vote
3answers
187 views

Why does this hashmap have the same key twice?

// same X, Y value text. TextInfo currXY = new TextInfo( text ); ArrayList<TextPosition> currTextArray = textComposition.get( currXY ); if( currTextArray != null ){ ...
5
votes
4answers
132 views

HashMap value's

public final static HashMap<String, Integer> party = new HashMap<String, Integer>(); party.put("Jan",1); party.put("John",1); party.put("Brian",1); party.put("Dave",1); ...
0
votes
2answers
2k views

Parsing XML into a Hashmap Java

I have some information stored in XML, and I need to parse XML and store some of the values in Hashmap. Here is the XML: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <sections ...
0
votes
1answer
167 views

searching for specific keys in multiple independent hashMap objects

I have a slightly theoretical question that I want to clear up before I start programing my solution any further... Background. I need to perform comparisons between 2 (or possible more) MS Access ...
0
votes
3answers
304 views

Java, How to assign key to bitmap using HashMap?

In global definition i have declared: private HashMap<String, Bitmap> map = new HashMap<String, Bitmap>(); In other part of my code, i connect to server and get my required info. Two of ...
1
vote
2answers
138 views

How to get Hashmap Key and convert it other datatype

Hi I am having an error running this code Map<String, Integer> map = new TreeMap<String, Integer>();//Already populated public ArrayList<Map<String, Integer>> storage(){ ...
7
votes
2answers
657 views

Common Lisp: getting all keys of a given hash table as a list

I wonder if there is a less verbose way than using a loop. Anyway this works for me in CLISP: (loop for key being the hash-keys of *my-hash* collect key) I've seen others using maphash, but that ...
1
vote
3answers
989 views

linked hashmap finding key by value?

In a linked hashmap Is there any methods to get the value of K by only providing V? I've searched all over the internet and so far I've only found loops to get the key.
1
vote
3answers
1k views

How do I iterate over a LinkedHashMap and select between the key and value separately?

At the moment I have this: try{ // Create file FileWriter fstream = new FileWriter("output"); BufferedWriter out = new BufferedWriter(fstream); ...
5
votes
5answers
17k views

How to print all key and values from HashMap in Android?

Am very new for Android development. Am trying to use HashMap in Android sample project. Now, am doing sample project for learn android. I just store keys and values in HashMap, i want to show the ...
1
vote
2answers
240 views

Java HashMap boxed key type autocast weirdness

Just came up upon a very strange behavior of Java HashMap. The map has the Long type of keys, but when I access them passing an int key, there is no autocast, instead the get() method returns null as ...
3
votes
6answers
987 views

Creating a hashmap with a double key

I am looking for an appropriate data structure for my problem. I would like to be able to select node objects as efficiently as possible using two keys. Insertion and deletion also needs to be ...
3
votes
3answers
236 views

What is a key object (use in hashmap)?

Could someone explain what exactly a key object is for use in hashmap? There is a method: "put(Object key, Object value) Associates the specified value with the specified key in this map." ...
4
votes
6answers
2k views

Nested Maps or combined keys in java

I need a Map to make a cache in Java for same values that I have two String keys. My question it's better to make nested Maps (one for each key) or make some type of custom key maked with the two ...
0
votes
2answers
372 views

Which is better between using long string key or short string key in HashMap?

Which is better between using long string key or short string key in HashMap? Example: 1. Long string key in HashMap HashMap<String, String> map = new HashMap<String, String>(); ...
0
votes
2answers
579 views

My HashMap<String, ArrayList>'s Key is getting the wrong values

I'm basically taking a big block of chars and using each suffix as a key, each key pointing an an ArrayList that contains the index where each of these suffixes can be found. When I do a ...
7
votes
5answers
1k views

Are mutable hashmap keys a dangerous practice?

Is it bad practice to use mutable objects as Hashmap keys? What happens when you try to retrieve a value from a Hashmap using a key that has been modified enough to change its hashcode? For example, ...
3
votes
4answers
2k views

Java hashmap search keys for a date

I have a hashmap: Map dateEvent = new HashMap(); where key is a date and time and value is a string. I fill collection with data where date is in format dd.MM.yyyy HH:mm. How I can get all keys with ...
6
votes
4answers
2k views

Why are custom objects not equivalent keys for a HashMap?

I'm having trouble using my own class as a key for a HashMap public class ActorId { private final int playerId; private final int id; ActorId(int playerId, int id) { ...
0
votes
2answers
641 views

retrieving the values from the nested hashmap

I have a XML file with many copies of table node structure as below: <databasetable TblID=”123” TblName=”Department1_mailbox”> <SelectColumns> <Slno>dept1_slno</Slno> ...
2
votes
4answers
1k views

Java Hashmap returning a value from a given key, using random

I have a bit of a problem in regards to getting my program to work. I have created a hashmap that has a setting and the hashmap can hold 4 key/value pairs. Now each key (0,1,2,3) is attached to a ...
0
votes
4answers
749 views

Setting key type in HashMap, how?

hi I want to create a HashMap (java) that stores Expression, a little object i've created. How do I choose what type of key to use? What's the difference for me between integer and String? I guess i ...
0
votes
7answers
2k views

java hashmap keys

Is there any reason why you would use anything other than String as a hashmap key? It seems like Strings are good enough 99% of the time. Plus, you don't have to implement hashCode() and ...
1
vote
4answers
476 views

Is it possible to use double-quote characters as part of hashmap key?

I am going to have a string like "hello " world" as a hashmap key. The key is actually from user input, that's why it is possible to have something like that as a key. Is it okay?
78
votes
1answer
26k views

Check if a specific key is present in a hash or not?

I am working on rails and I want to check whether user key is present or not in session hash. How can I check this? PS: I don't want to check whether this value is nil or not. I want to check weather ...
1
vote
3answers
517 views

Why containsKey did not find the key?

I have the following code: payoffs2exchanges.put(point, exchange); if (!payoffs2exchanges.containsKey(point) ) { game.log.fine("yes"); } else { game.log.fine("no"); } It outputs "no". In ...
0
votes
4answers
416 views

HashMap collisions: is my code correct?

I want to have one DateWrapper - representing a date (built for Hibernate persistance, but this is another story) - at most existing at the same time for the same date. I'm a bit confused about ...
27
votes
6answers
34k views

How to update a value, given a key in a java hashmap?

Let me ask you something. Let's say we have a hashmap in java which keys are string objects and their corresponding values are integers. Now if i want to update (increment) the integer-value of the ...
2
votes
5answers
1k views

Finding all keys in a HashMap with a character an replace it

I have a HashMap and now i need to find all the keys inside the HashMap which has a particular letter inside it and replace it with another letter
1
vote
1answer
1k views

JSF + HashMap and its key

I have a database with 2 tables CD and Song. Session bean access then entity classes of those two tables. In my backing bean, I just have a String cd and HashMap<CDName, CDName> cds that will ...
2
votes
4answers
995 views

HashMap key problems

I'm profiling some old java code and it appears that my caching of values using a static HashMap and a access method does not work. Caching code (a bit abstracted): static HashMap<Key, Value> ...
9
votes
3answers
8k views

HashMap null key

HashMap allows one null key and any number of null values. what is the use of it?

1 2