views:

244

answers:

1

I cannot find much documentation about HashMaps in j2me. Does anyone have experience with this? How to create a HashMap?

Map map1 = new HashMap();

should work, right?

+4  A: 

Only the Hashtable is available in Java ME API.

BalusC
indeed: http://java.sun.com/javame/reference/apis/jsr030/java/util/Hashtable.html to be exact
hsmit
@hsmit: the `Hashtable` in my message is blue and clickable :)
BalusC