Cita de: http://foro.elhacker.net/index.php/topic,163024.0.htmlA. los títulos deben incluir una pregunta precisa
Cuentanos más... ¿qué llevas de la calculadora? ¿qué has pensado para el otro programa?
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: http://foro.elhacker.net/index.php/topic,163024.0.htmlA. los títulos deben incluir una pregunta precisa
try {
Process p = Runtime.getRuntime().exec("cmd /C ping -t 127.0.0.1");
BufferedReader stdInput = new BufferedReader(new
InputStreamReader(p.getInputStream()));
BufferedReader stdError = new BufferedReader(new
InputStreamReader(p.getErrorStream()));
// read the output from the command
System.out.println("Here is the standard output of the command:\n");
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}
// read any errors from the attempted command
System.out.println("Here is the standard error of the command (if any):\n");
while ((s = stdError.readLine()) != null) {
System.out.println(s);
}
System.exit(0);
} catch (IOException e) {
System.out.println("exception happened - here's what I know: ");
e.printStackTrace();
System.exit(-1);
}