Fala galera,
Executo esse programa e a job vai para a fila de impressão mas não imprime. 
Help…
PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
aset.add(OrientationRequested.PORTRAIT);
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
DocPrintJob job = defaultService.createPrintJob();
InputStream in = new ByteArrayInputStream(new String("teste").getBytes());
Doc doc = new SimpleDoc(in, flavor, null);
job.print(doc, null);
