// methode utilitaire fournie aux etudiants public static int convStringToInt ( final String pN ) throws java . util . zip . DataFormatException { try { return Integer . parseInt ( pN ) ; } catch ( NumberFormatException nfe ) { throw new java . util . zip . DataFormatException ( nfe . getMessage ( ) ) ; } } // convStringToInt(.)