System.out.println ("*** Looping over properties by entry set.");
System.out.println ("---------------------------------------" +
"---------------------------------------");
for (Map.Entry<String, String> entry : map.entrySet())
{
buf.clear();
buf.append (entry.getValue());
buf.encodeMetacharacters();
System.out.println (entry.getKey() + "=" + buf.toString());
}
}