Hi all gurus!
I am facing a problem. I used the following hashmap to store some values
HashMap<String, Object> hm = new HashMap<String, Object>();
The object is another HashMap (yeah, you can say HashMap of HashMap). String is to store book name, and Object is again another hashmap that is to store author name and number of authors. So it can look like ( Xyz book{authname,numberOfAuthors} ). Now I want to print this hashmap as NxN matrix. Is there any default function out there that i can use for this? If no, then anybody can tell me any hint to do it in easy way? Because I do not want to use so many loops and if conditions (it will kill system).
Thanks!