Is there a good way to have a Map get and put ignore case?
|
1
|
|
|
|
|
|
Would it be possible to implement your own Map overriding put/get methods ?
This approach does not force you to change your "key" type but your Map implementation. |
||||||||||
|
|
|
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). |
||
|
|
|
|
The three obvious solutions that spring to mind:
|
||
|
|
|
|
You could use org.apache.commons.collections.map.CaseInsensitiveMap from Apache's Commons Collections. |
||
|
|
|
|
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. |
||||||||
|
