El HashMap es de la forma (código del item, cantidad):
HashMap hashMap = new HashMap();
hashMap.put("1","5");
hashMap.put("2","5");
hashMap.put("3","2");
int cantidad = 0;
Iterator it = hashMap.entrySet().iterator();
while (it.hasNext()) {
Map.Entry e = (Map.Entry)it.next();
cantidad += (Integer) e.getValue();
}
Es una buena forma de tenerlo apuntado en algun sitio, para cuando se me olvide ;)
No hay comentarios:
Publicar un comentario