Skip to content

Instantly share code, notes, and snippets.

@jorgeyp
Created May 11, 2011 21:11
Show Gist options
  • Save jorgeyp/967365 to your computer and use it in GitHub Desktop.
Save jorgeyp/967365 to your computer and use it in GitHub Desktop.
Problema con el PrintWriter
// 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.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment