I have a HashTable like
HashTable<String, String> table=new HashTable<String, String>();
table.put("1","ABC");
.......continues
Now with enumeration I can get this key and values in two strings say str1 and str2.
I want to add this two string values in a JTable. Every time a new value will iterate and will add in the JTable. How to do this ?
Remember I have no option to use a HashMap.
You can use this: