Vector<Vector<String>> row = new Vector<Vector<String>>();
Vector<String> v;
SortedMap sortedProperties = new TreeMap();
Enumeration<String> k = (Enumeration<String>) appProps.propertyNames();
sortedProperties.putAll(appProps);
for (Iterator it = sortedProperties.keySet().iterator(); it.hasNext();) {
v = new Vector<String>();
String property = it.next().toString();
v.add(property);
v.add(appProps.getProperty(property));
row.add(v);