Skip to content

Instantly share code, notes, and snippets.

@maleficarum
Created October 25, 2011 23:02
Show Gist options
  • Save maleficarum/1314679 to your computer and use it in GitHub Desktop.
Save maleficarum/1314679 to your computer and use it in GitHub Desktop.
Print ticket
DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
PrintService service = PrintServiceLookup.lookupDefaultPrintService();
DocPrintJob pj = service.createPrintJob();
byte[]bytes =cadena.getBytes();
Doc doc = new SimpleDoc(bytes, flavor,null);
try{
pj.print(doc,null);
}catch(Exception e){ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment