import java.awt.JobAttributes; import java.awt.PageAttributes; import java.awt.PrintJob; import java.awt.Toolkit; import javax.swing.JFrame; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author ampopov */ public class PrintTest { public static void main(String[] args) { JobAttributes job = new JobAttributes(); PageAttributes page = new PageAttributes(); job.setDialog(JobAttributes.DialogType.NATIVE); job.setMultipleDocumentHandling(JobAttributes.MultipleDocumentHandlingType.SEPARATE_DOCUMENTS_UNCOLLATED_COPIES); job.setDefaultSelection(JobAttributes.DefaultSelectionType.ALL); job.setDestination(JobAttributes.DestinationType.PRINTER); job.setCopies(2); job.setFromPage(2); job.setToPage(5); page.setMedia(PageAttributes.MediaType.A4); page.setOrientationRequested(PageAttributes.OrientationRequestedType.PORTRAIT); Toolkit tk = Toolkit.getDefaultToolkit(); // seeting this dialog to native pritdialog if (tk != null) { PrintJob pj = tk.getPrintJob(new JFrame(), "testing the attribute setting ", job, page); } System.exit(0); } }