sb.append ("<th width=\"20%\">Port</th>");
sb.append ("<th width=\"50%\">#Connection</th>\n");
Map<Address, List<WebConnection>> m = ch.getActiveConnections ();
for (Map.Entry<Address, List<WebConnection>> me : m.entrySet ()) {
Address a = me.getKey ();
List<WebConnection> ls = me.getValue ();
sb.append ("<tr><td>").append (a.getInetAddress ());
sb.append ("</td><td>").append (a.getPort ());
sb.append ("</td><td>").append (ls.size ());
sb.append ("</td></tr>\n");
}
sb.append ("</table><br>\n");