A voir également:
- Java + tri d'une map à partir des valeurs
- Annuaire portable gratuit a partir d'un nom ✓ - Forum Mobile
- Google map satellite - Guide
- Comment trouver un numéro à partir du nom et prénom ✓ - Forum Mobile
- Trouver un numero de portable a partir d'un nom svp - Forum Internet / Réseaux sociaux
- Recherche à partir d'une image - Guide
3 réponses
HackTrack
Messages postés
618
Date d'inscription
vendredi 26 juillet 2002
Statut
Membre
Dernière intervention
13 juillet 2013
972
21 mars 2007 à 10:12
21 mars 2007 à 10:12
Salut!
;-)
HackTrack
Map<String, Integer> map = new HashMap<String, Integer>();
map.put("HackTrack",4500);
map.put("CCM",3698);
map.put("Blaireau64",2569);
map.put("Java",6500);
map.put("Linux",6500);
map.put("Kill bill( G....)",0);
Collection<Integer> vals = map.values();
List<Integer> tempList = new ArrayList<Integer>(vals);
Collections.sort(tempList);
System.out.println(tempList);
;-)
HackTrack