Bonjour,
je vous explique mon probème , mon but est de créer un dico tel que: hash= {clé (sting), valeur tableau[objet employe, string]}
du coup je m y prend comme suit:
allEmpest une collection java de employe;
Code :
- HashTable hash= new HashTable();
- for (Iterator it = allEmp.iterator();it.hasNext();) {
- Employe emp= (Employe ) it.next();
- Object arr[]= {emp,"0"};
- hash.put(emp.getIdEmploye,arr);
- }
- Object[] arr = (Object[]) hash.get("65" );
- String s= (String) arr[1];
- System.out.println(s);
|
mais ça me mets un nulpointerexception au niveau de la ligne 7,
je vosi pas d'ou ça pourrait bvenir .
merci
Message édité par root76 le 12-04-2007 à 11:56:40