Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/01/2009, 08:05
och
 
Fecha de Ingreso: enero-2009
Mensajes: 29
Antigüedad: 16 años
Puntos: 0
Respuesta: Ayuda please!

Eso lo puedes hacer creando el archivo con un FileOutputStream:

Código:
FileOutputStream file= new FileOutputStream("c:/carpeta/pagina.txt");
PrintStream p = new PrintStream( file );	
String linea;
while ((linea = in.readLine()) != null) {
   System.out.println(linea);
   p.println( linea);

}
Esto genera algún tipo de excepcion pero no me acuerdo ahora mismo cual es, haces el try/catch y ya está.

Saludos