I\'m getting this error when I try to print something for a specific label printer in my current college project:
java.awt.print.PrinterException: Paper\'s i
i solve it adding
PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet(); aset.add(OrientationRequested.PORTRAIT); aset.add(MediaSizeName.INVOICE); job.print( aset);