如何得到nutch中配置类Configuration中所有的配置信息

    System.out.println("conf=="+getConf().size());
    Iterator<Entry<String, String>> i=getConf().iterator();
    int count=0;
    while(i.hasNext()){
    	Entry<String, String> e=i.next();
    	System.out.println((++count)+"  getKey=="+e.getKey()+"||getvalue=="+e.getValue());
    }


你可能感兴趣的:(如何得到nutch中配置类Configuration中所有的配置信息)