简书的格式真的是有问题,导致复制内容显示问题。
完整内容可参考 http://blog.csdn.net/ipolaris/article/details/8930599
I. 如下,为何必须两行呢?难道.*后面应该再加.*吗? java是怎么导入类的?
import java.util.*;
import java.util.Map.Entry;
II. 具体应用在了map的遍历:
for(Entryhourmapkey:hourcounterMapValue.entrySet()){
jedis.hset(StrToVal.get("counter_"+baseMap),hourmapkey.getKey(),hourmapkey.getValue());
}
III. 以前遍历Map key-value比较习惯的方式是先获取Map中的所有key值,然后根据key,依次从Map中去数据,基本方式如下:
Map testData =newHashMap();
………………………………………………一些赋值操作………………………………...
Set keys = testData.keySet();
for(Stringkey :keys){
System.out.println(key+" "+testData.get(key));
}
IV. 上述其中是第一种方法,原来一直用上述方法主要是自己有点懒,有了一种方法后就觉得够用的了,今天看源码,发现还Map接口中还有一个Entry的接口,对应的还有一个 Set
V>>
entrySet();方法。也就是说其实Map中的每条key-value数据对应着一个Entry,这样的话遍历Map其实就是要取出每个Entry,也就有了第二种遍历方法
Set> entries = testData.entrySet();
for(Entry entry : entries) { System.out.println(entry.getKey()+":"+entry.getValue());
}
当少量的数据时,上述两种方法的效率是差不多的,当数据比较多时,第二种还是要比第一种块。
当然上述说的两种遍历针对的情况是遍历出key-value,如果是只想遍历key或value,大可不必用以上的方法了,Map中提供了Set keySet()和Collection values()。
-------------------------------------------------------------------------------------
Jedis jedis = new Jedis(redis_host, redis_port,100000);
jedis.auth(redis_pass);//general redis map
MapStrToVal=new HashMap();
Map hourcounterMapValue=new HashMap();
StrToVal.put("counter_offer","counter_offer_"+offer_id);
StrToVal.put("counter_n","counter_n_"+n_id);
StrToVal.put("counter_campaign","counter_campaign_"+campaign_id);
for(String baseMap:daykeys){
StrToVal.put("hourcounter_"+baseMap,"hour"+StrToVal.get("counter_"+baseMap)); hourcounterMapValue=jedis.hgetAll(StrToVal.get("hourcounter_"+baseMap)); for(Entryhourmapkey:hourcounterMapValue.entrySet()){
jedis.hset(StrToVal.get("counter_"+baseMap),hourmapkey.getKey(),hourmapkey.getValue());
}
}