vote up 9 vote down star
1

Is there a good way to have a Map get and put ignore case?

flag

5 Answers

vote up 5 vote down check

Would it be possible to implement your own Map overriding put/get methods ?

public class CaseInsensitiveMap extends HashMap<String, String> {
    ...
    put(String key, String value) {
       super.put(key.toLowerCase(), value);
    }

    get(String key) {
       super.get(key.toLowercase());
    }
}

This approach does not force you to change your "key" type but your Map implementation.

link|flag
2  
That is basically the approach taken in Apache's Commons Collections CaseInsensitiveMap. – Eric Weilnau Oct 17 '08 at 15:27
Remember to use a locale when doing upper and lower case operations. – marcospereira Oct 17 '08 at 15:28
Don't forget to override all other "put" methods such as putAll. – Steve Kuo Oct 17 '08 at 16:50
One strange side-effect is that if you list the keys in this map, they will suddenly have turned lowercase. – volley Oct 17 '08 at 22:19
vote up 0 vote down

You could use my Apache licensed CaseInsensitiveMap discussed here. Unlike the Apache Commons version, it preserves the case of keys. It implements the map contract more strictly than TreeMap (plus has better concurrent semantics) (see the blog comments for details).

link|flag
vote up 2 vote down

The three obvious solutions that spring to mind:

  • Normalise the case before using a String as a key (not Turkish locale works differently from the rest of the world).

  • Use a special object type designed to be used as key. This is a common idiom for dealing with composite keys.

  • Use a TreeMap with a Comparator that is case insensitive (possibly a PRIMARY or SECONDARY strength java.text.Collator). Unfortunately the Java library doesn't have a Comparator equivalent for hashCode/equals.

link|flag
vote up 9 vote down

You could use org.apache.commons.collections.map.CaseInsensitiveMap from Apache's Commons Collections.

link|flag
vote up 10 vote down

You need a wrapper class for your String key with a case-insensitive equals() and hashCode() implementation. Use that instead of the String for the Map's key.

See an example implementation at http://www.java.happycodings.com/Java_Util_Package/code3.html I found it in 2 minutes of googling. Looks sensible to me, though I've never used it.

link|flag
A little tricky, isn't it? I don't like to implement equals, and hashCode avove all, if it is not really really needed. I prefer the aproach of creating a Map implementation overriding put and get methods. – Guido García Oct 17 '08 at 15:40
1  
Creating a wrapper class is done all the time and is not tricky at all. The wrapper class solution is also much cleaner that overriding put, get, putAll. You can use the wrapper class on any hashed or equals based collection (HashSet, HashMap, ArrayList, etc). – Steve Kuo Oct 17 '08 at 16:53
The portability among different collections is interesting. Thank you. I didn't think about it. I suppose each approach has its advantages and drawbacks. – Guido García Oct 17 '08 at 18:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.