Allora ho fatto così :


Codice PHP:
        Map m = new java.util.HashMap ();
        
Iterator it m.keySet().iterator();
        
Prodotto p = new Prodotto();
        while(
it.hasNext()) {
            
= (Prodottoit.next();
            
System.out.println (p.getCodice());
            
System.out.println (p.getDescrizione());
            
System.out.println (p.getPrezzo());
        } 
nessun errore sintattico ma non entra while, quindi non mi stampa niente...
dove sbaglio ?