@IT:連載 基礎から学ぶサーブレット/JSP 第8回
HashMap objMap=new HashMap();
objMap.put("key1","value1");
objMap.put("key2","value2");
Object[] objKey=objMap.keySet().toArray();
for(int i=0;i < objKey.length;i++){
     out.println(objKey[i]); // key name
     out.println(objMap.get(objKey[i])); // value
}

Webアドレスに自動でアンカーを追加する
String strVal="新WINGSサイト http://www.wings.msn.to/ をよろしく!";
out.println(strVal.replaceAll("(http://|https://){1}[\\w\\.\\-/:]+","<a href='$0'>$0</a>"));

String strVal2="お問い合わせは webmaster@wings.msn.to まで";
out.println(strVal2.replaceAll("[\\w\\.\\-]+@([\\w\\-]+\\.)+[\\w\\-]+","<a href='mailto:$0'>$0</a>"));