Lectura por tecladoPublicado por charlie (5 intervenciones) el 22/09/2005 15:06:25Como hago para hacer la lectura por teclado?????Valora esta pregunta0Responder
Pos: 5Val: 755RE:Lectura por tecladoPublicado por Yamil Bracho (2316 intervenciones) el 22/09/2005 15:50:54try { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String str = ""; while (str != null) { System.out.print("Dato="); str = in.readLine(); process(str); } } catch (IOException e) { }Valora esta respuesta0Comentar