Printing obects in hash - JSP/Java Views : 282
Tagged in : JSP-Java
0 0
Send mail
Printing obects in hash

Enumeration keys = hash.keys();

while( keys.hasMoreElements() ) {
  Object key = keys.nextElement();
  Object value = hash.get(key);
System.out.println(value);
}


By rajesh, On - 2009-12-30



    Login to add Comments .