1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
void creer(){
BufferedReader IN=null;
try {
IN=new BufferedReader(new InputStreamReader(System.in));
} catch(Exception e){
System.err.println("Erreur : "+e);
System.exit(1);
}
try {
System.out.print("Numero : ");this.numClt=IN.readLine();
System.out.print("Nom : ");this.nomClt=IN.readLine();
System.out.print("Prenom : ");this.prenomClt=IN.readLine();
System.out.print("Adresse : ");this.adresseClt=IN.readLine();
} catch (IOException e) {
// TODO Bloc catch auto-généré
e.printStackTrace();
}
} |