{{theTime}}

Search This Blog

Total Pageviews

How to iterate HashMap without any generics


public static void printMap(HashMap mp) {
   Iterator it = mp.entrySet().iterator();
   while (it.hasNext()) {
       Map.Entry pairs = (Map.Entry)it.next();
       String values = pairs.getKey() + " = " + pairs.getValue() ;
       System.out.println(values);
       logger.info(values) ;
       it.remove();
   }
}

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...