I need to fill a StringArray with a value every time it looks at the next element help please.
I am going to assume the hashtable values are irrelevant to my goal.
Code:Enumeration k = fileObj.keys();
while (k.hasMoreElements()) {
// out.write(house + ";" + value+"/n");
String key = (String) k.nextElement();
String output = key + ";" + fileObj.get(key)+"\n";
//StringArray Here Please
out.write(output);
out.close();
}
