Skip to content

Instantly share code, notes, and snippets.

@jorgeyp
Created May 11, 2011 21:36
Show Gist options
  • Save jorgeyp/967425 to your computer and use it in GitHub Desktop.
Save jorgeyp/967425 to your computer and use it in GitHub Desktop.
// En el constructor:
logger = new PrintWriter(new FileWriter("log.txt"));
public void run() { // Es un hilo
while (true) {
String mensaje = recibir();
logger.println(mensaje);
logger.flush();
// logger.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment