Tema: Impresion
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/03/2008, 19:52
WinDoctor
 
Fecha de Ingreso: octubre-2006
Mensajes: 51
Antigüedad: 17 años, 6 meses
Puntos: 1
Re: Impresion

Usando FileWriter y PrinterWriter puede conseguir hacerlo. Busque información sobre ello

FileWriter fw = new FileWriter("LPT1:");
PrintWriter pw = new PrintWriter(fw);
String s = "HOLA MUNDO!!!!!!!!!!!!";

pw.print(s);
pw.close();

saludos!!