04 2013 档案
Map迭代
摘要:for(Map.Entry<String, List> entry : map.entrySet()) { System.out.println(entry.getKey()); List ls=entry.getValue(); }Iterator it = map.keySet().iterator();while(it.hasNext()){ String key = (String) it.next(); List value = map.get(key);} 阅读全文
posted @ 2013-04-27 15:22 双面煎蛋 阅读(311) 评论(0) 推荐(0) 编辑
摘要:Exception in thread "Thread-27" org.jboss.netty.channel.ChannelException: Failed to bind to: /192.168.1.149:7100 at org.jboss.netty.bootstrap.ServerBootstrap.bind(ServerBootstrap.java:272) at com.netty.receive.ReceiveGatewayServer.run(ReceiveGatewayServer.java:63) at java.lang.Thread.run(T 阅读全文
posted @ 2013-04-09 20:47 双面煎蛋 阅读(1411) 评论(0) 推荐(0) 编辑