I am dealing with problem. The code throws "java.lang.ClassNotFoundException: java.util.HashMap.Entry"
Class.forName("java.util.HashMap.Entry");
Anybody knows how can I create class to store HashMap.Entry?
Try:
Class.forName("java.util.HashMap$Entry");
(note the dollar sign.)
This works for me.