摘要:
第一种: Map map = new HashMap(); Iterator iter = map.entrySet().iterator(); while (iter.hasNext()) { Map.Entry entry = (Map.Entry) iter.next(); Object key = entry.getKey(); Object val = entry.getValue(); } 效率高,以后一定要使用此种方式! 第二种: Map map = new HashMap(); Iterator iter = map.keySet().iterator(); while 阅读全文
阅读排行榜
Nutch 0.8最近更新的邮件列表
2006-09-05 01:41 by cppguy, 401 阅读, 收藏,
摘要:
怎样向Nutch中添加筛取Http流的正则表达式的业务逻辑?你应该写一个新的plugin,使用src/plugin/creativecommons作为模版创建适用自己的pluginYou can start from here.. http://wiki.apache.org/nutch/ About writing plugin http://wiki.apache.org/nutch/Plug... 阅读全文
浙公网安备 33010602011771号