本文整理匯總了Java中javax.print.SimpleDoc類的典型用法代碼示例。如果您正苦於以下問題:Java SimpleDoc類的具體用法?Java SimpleDoc怎麽用?Java SimpleDoc使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
SimpleDoc類屬於javax.print包,在下文中一共展示了SimpleDoc類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: print
import javax.print.SimpleDoc; //導入依賴的package包/類
@Override
public boolean print(Label label, String codePage) {
if (psBarCode == null) {
System.err.println("Barcode printer not found");
return false;
}
try {
byte[] bytes = label.getCommands().getBytes("cp" + codePage);
DocPrintJob job = psBarCode.createPrintJob();
DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
Doc doc = new SimpleDoc(bytes, flavor, null);
job.print(doc, null);
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
}
示例2: main
import javax.print.SimpleDoc; //導入依賴的package包/類
public static void main(String[] args) throws Exception {
GraphicsEnvironment.getLocalGraphicsEnvironment();
DocFlavor flavor = DocFlavor.SERVICE_FORMATTED.PRINTABLE;
String mime = DocFlavor.BYTE_ARRAY.POSTSCRIPT.getMimeType();
StreamPrintServiceFactory[] factories =
StreamPrintServiceFactory.
lookupStreamPrintServiceFactories(flavor, mime);
if (factories.length == 0) {
System.out.println("No print service found.");
return;
}
FileOutputStream output = new FileOutputStream("out.ps");
StreamPrintService service = factories[0].getPrintService(output);
SimpleDoc doc =
new SimpleDoc(new PrintSEUmlauts(),
DocFlavor.SERVICE_FORMATTED.PRINTABLE,
new HashDocAttributeSet());
DocPrintJob job = service.createPrintJob();
job.addPrintJobListener(new PrintJobAdapter() {
@Override
public void printJobCompleted(PrintJobEvent pje) {
testPrintAndExit();
}
});
job.print(doc, new HashPrintRequestAttributeSet());
}
示例3: actionPerformed
import javax.print.SimpleDoc; //導入依賴的package包/類
@Override
public void actionPerformed(ActionEvent e)
{
try {
if (selectedDriver == null)
return;
PrintService ps = (PrintService)printers.getSelectedItem();
PrintRequestAttributeSet attr = new HashPrintRequestAttributeSet();
attr.add(new Copies(1));
attr.add((Media)ps.getDefaultAttributeValue(Media.class)); // set to default paper from printer
attr.add(OrientationRequested.LANDSCAPE);
SimpleDoc doc = new SimpleDoc(activeLabel, DocFlavor.SERVICE_FORMATTED.PRINTABLE, null);
ps.createPrintJob().print(doc, attr);
} catch (PrintException ex) {
log.log(Level.SEVERE, "\bBarcode print failed: " + ex.getMessage(), ex);
}
}
示例4: out
import javax.print.SimpleDoc; //導入依賴的package包/類
public static boolean out(BufferedImage image) {
try {
DocFlavor flavor = DocFlavor.SERVICE_FORMATTED.PRINTABLE;
PrintRequestAttributeSet requestAttributeSet = new HashPrintRequestAttributeSet();
requestAttributeSet.add(MediaSizeName.ISO_A4);
requestAttributeSet.add(new JobName(LSystem.applicationName + LSystem.getTime(), Locale.ENGLISH));
PrintService[] services = PrintServiceLookup.lookupPrintServices(flavor, requestAttributeSet);
PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
PrintService service = ServiceUI.printDialog(null, 100, 100, services, defaultService, flavor,
requestAttributeSet);
if (service != null) {
DocPrintJob job = service.createPrintJob();
SimpleDoc doc = new SimpleDoc(new BufferedImagePrintable(image), flavor, null);
job.print(doc, requestAttributeSet);
}
} catch (Exception e) {
return false;
}
return true;
}
示例5: testVerifyAttributeCategory3
import javax.print.SimpleDoc; //導入依賴的package包/類
public final void testVerifyAttributeCategory3() {
//fails in "some" invironment
//see AttributeSetUtilities, line 337-339
try {
AttributeSetUtilities.
verifyAttributeCategory(SimpleDoc.class, Doc.class);
fail("method doesn't throw ClassCastException if object " +
"is a Class that implements interfaceName but " +
"interfaceName is not a class that implements " +
"interface Attribute");
} catch (ClassCastException e) {
//System.out.println("testVerifyAttributeCategory3 - " + e.toString());
}
}
示例6: printZpl
import javax.print.SimpleDoc; //導入依賴的package包/類
/**
* Function to print code Zpl to local zebra(usb)
*
* @param zpl
* code Zpl to print
* @param ip
* ip adress
* @param port
* port
* @throws ZebraPrintException
* if zpl could not be printed
*/
public static void printZpl(String zpl, String printerName) throws ZebraPrintException {
try {
PrintService psZebra = null;
String sPrinterName = null;
PrintService[] services = PrintServiceLookup.lookupPrintServices(null, null);
for (int i = 0; i < services.length; i++) {
PrintServiceAttribute attr = services[i].getAttribute(PrinterName.class);
sPrinterName = ((PrinterName) attr).getValue();
if (sPrinterName.toLowerCase().indexOf(printerName) >= 0) {
psZebra = services[i];
break;
}
}
if (psZebra == null) {
throw new ZebraPrintNotFoundException("Zebra printer not found : " + printerName);
}
DocPrintJob job = psZebra.createPrintJob();
byte[] by = zpl.getBytes();
DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
Doc doc = new SimpleDoc(by, flavor, null);
job.print(doc, null);
} catch (PrintException e) {
throw new ZebraPrintException("Cannot print label on this printer : " + printerName, e);
}
}
示例7: testVerifyAttributeCategory3
import javax.print.SimpleDoc; //導入依賴的package包/類
public final void testVerifyAttributeCategory3() {
//fails in "some" invironment
//see AttributeSetUtilities, line 337-339
try {
AttributeSetUtilities.
verifyAttributeCategory(SimpleDoc.class, Doc.class);
fail("metod doesn't throw ClassCastException if object " +
"is a Class that implements interfaceName but " +
"interfaceName is not a class that implements " +
"interface Attribute");
} catch (ClassCastException e) {
//System.out.println("testVerifyAttributeCategory3 - " + e.toString());
}
}
示例8: print
import javax.print.SimpleDoc; //導入依賴的package包/類
/**
*
* @param path
* @throws PrintException
* @throws IOException
*/
public void print(String path) throws PrintException, IOException {
String defaultPrinter =lookupDefaultPrintService().getName();
showMessageDialog(null,"Default printer: " + defaultPrinter);
PrintService service = lookupDefaultPrintService();
DocFlavor flavor;
PrintJobWatcher pjw;
try (FileInputStream in = new FileInputStream(new File(path))) {
PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
pras.add(new Copies(1));
flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
Doc doc = new SimpleDoc(in, DocFlavor.INPUT_STREAM.AUTOSENSE, null);
DocPrintJob job = service.createPrintJob();
pjw = new PrintJobWatcher(job);
job.print(doc, pras);
pjw.waitForDone();
}
// send FF to eject the page
InputStream ff = new ByteArrayInputStream("\f".getBytes());
Doc docff = new SimpleDoc(ff, flavor, null);
DocPrintJob jobff = service.createPrintJob();
pjw = new PrintJobWatcher(jobff);
jobff.print(docff, null);
pjw.waitForDone();
}
示例9: print
import javax.print.SimpleDoc; //導入依賴的package包/類
/**
*
* @param g Graphic class
* @param pf page format
* @param page page count
* @return 1
* @throws PrinterException
*
* This methos print to pdf
*/
@Override
public int print(Graphics g, PageFormat pf, int page) throws
PrinterException {
DocFlavor flavor = DocFlavor.SERVICE_FORMATTED.PAGEABLE;
PrintRequestAttributeSet patts = new HashPrintRequestAttributeSet();
patts.add(Sides.DUPLEX);
PrintService[] ps = PrintServiceLookup.lookupPrintServices(flavor, patts);
if (ps.length == 0) {
//
}
//System.out.println("Available printers: " + Arrays.asList(ps));
PrintService myService = null;
for (PrintService printService : ps) {
if (printService.getName().equals("Your printer name")) {
myService = printService;
break;
}
}
if (myService == null) {
//
}
try (FileInputStream fis = new FileInputStream(file)) {
Doc pdfDoc = new SimpleDoc(fis, DocFlavor.INPUT_STREAM.AUTOSENSE, null);
DocPrintJob printJob = myService.createPrintJob();
printJob.print(pdfDoc, new HashPrintRequestAttributeSet());
} catch (Exception e) {
e.printStackTrace();
throw new PrinterException("File Not Found!");
}
return 1;
}
示例10: print
import javax.print.SimpleDoc; //導入依賴的package包/類
public void print() throws IOException, PrintException {
DocFlavor inputFlavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_UTF_8;
// Lookup a print factory to convert from desired input to output.
StreamPrintServiceFactory[] psfactories =
StreamPrintServiceFactory.lookupStreamPrintServiceFactories(
inputFlavor, DocFlavor.BYTE_ARRAY.POSTSCRIPT.getMimeType());
if (psfactories.length == 0) {
System.err.println("Ack! No StreamPrintFactory found for this job!");
}
StreamPrintService printService =
psfactories[0].getPrintService(new FileOutputStream("demo.ps"));
PrintRequestAttributeSet attrs = new HashPrintRequestAttributeSet();
attrs.add(OrientationRequested.LANDSCAPE);
attrs.add(MediaSizeName.NA_LETTER);
attrs.add(new Copies(1));
attrs.add(new JobName(INPUT_FILE_NAME, null));
InputStream is = getClass().getResourceAsStream(INPUT_FILE_NAME);
if (is == null) {
throw new NullPointerException(
"Input Stream is null: file not found?");
}
Doc doc = new SimpleDoc(is, inputFlavor, null);
DocPrintJob printJob = printService.createPrintJob();
printJob.print(doc, attrs);
}
示例11: print
import javax.print.SimpleDoc; //導入依賴的package包/類
/** Print a file by name
* @throws IOException
* @throws PrintException
*/
public void print(String fileName) throws IOException, PrintException {
System.out.println("PrintServiceDemo.print(): Printing " + fileName);
DocFlavor flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_UTF_8;
PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
//aset.add(MediaSize.NA.LETTER);
aset.add(MediaSizeName.NA_LETTER);
//aset.add(new JobName(INPUT_FILE_NAME, null));
PrintService[] pservices =
PrintServiceLookup.lookupPrintServices(flavor, aset);
int i;
switch(pservices.length) {
case 0:
System.err.println(0);
JOptionPane.showMessageDialog(PrintServiceDemo.this,
"Error: No PrintService Found", "Error",
JOptionPane.ERROR_MESSAGE);
return;
case 1:
i = 0; // Only one printer, use it.
break;
default:
i = JOptionPane.showOptionDialog(this,
"Pick a printer", "Choice",
JOptionPane.OK_OPTION, JOptionPane.QUESTION_MESSAGE,
null, pservices, pservices[0]);
break;
}
DocPrintJob pj = pservices[i].createPrintJob();
InputStream is = getClass().getResourceAsStream(INPUT_FILE_NAME);
if (is == null) {
throw new NullPointerException("Input Stream is null: file not found?");
}
Doc doc = new SimpleDoc(is, flavor, null);
pj.print(doc, aset);
}
示例12: testGet1
import javax.print.SimpleDoc; //導入依賴的package包/類
public final void testGet1() {
aset = new HashAttributeSet();
try {
aset.get(SimpleDoc.class);
fail("get() doesn't throw ClassCastException when given object" +
"is not a Class that implements interface Attribute");
} catch (ClassCastException e) {
}
}
示例13: main
import javax.print.SimpleDoc; //導入依賴的package包/類
public static void main(String[] args) throws PrintException, IOException {
DocFlavor flavor = DocFlavor.SERVICE_FORMATTED.PAGEABLE;
PrintRequestAttributeSet patts = new HashPrintRequestAttributeSet();
//patts.add(Sides.DUPLEX);
PrintService[] ps = PrintServiceLookup.lookupPrintServices(flavor, patts);
if (ps.length == 0) {
throw new IllegalStateException("No Printer found");
}
System.out.println("Available printers: " + Arrays.asList(ps));
PrintService myService = null;
for (PrintService printService : ps) {
if (printService.getName().equals("UPS Thermal 2844")) {
myService = printService;
break;
}
}
if (myService == null) {
throw new IllegalStateException("Printer not found");
}
FileInputStream fis = new FileInputStream("C:\\Users\\B2E_2\\workspace\\QuickInventory\\barcodes.pdf");
Doc pdfDoc = new SimpleDoc(fis, DocFlavor.INPUT_STREAM.AUTOSENSE, null);
DocPrintJob printJob = myService.createPrintJob();
printJob.print(pdfDoc, new HashPrintRequestAttributeSet());
fis.close();
}
示例14: printFO
import javax.print.SimpleDoc; //導入依賴的package包/類
/**
* Prints an FO file using JPS.
* @param fo the FO file
* @throws IOException In case of an I/O problem
* @throws FOPException In case of a FOP problem
* @throws TransformerException In case of a problem during XSLT processing
* @throws PrintException If an error occurs while printing
*/
public void printFO(File fo)
throws IOException, FOPException, TransformerException, PrintException {
//Set up DocPrintJob instance
DocPrintJob printJob = createDocPrintJob();
//Set up a custom user agent so we can supply our own renderer instance
FOUserAgent userAgent = fopFactory.newFOUserAgent();
PageableRenderer renderer = new PageableRenderer(userAgent);
userAgent.setRendererOverride(renderer);
// Construct FOP with desired output format
Fop fop = fopFactory.newFop(userAgent);
// Setup JAXP using identity transformer
TransformerFactory factory = TransformerFactory.newInstance();
Transformer transformer = factory.newTransformer(); // identity transformer
// Setup input stream
Source src = new StreamSource(fo);
// Resulting SAX events (the generated FO) must be piped through to FOP
Result res = new SAXResult(fop.getDefaultHandler());
// Start XSLT transformation and FOP processing
transformer.transform(src, res);
Doc doc = new SimpleDoc(renderer, DocFlavor.SERVICE_FORMATTED.PAGEABLE, null);
printJob.print(doc, null);
}
示例15: showPrintJDialog
import javax.print.SimpleDoc; //導入依賴的package包/類
final public Boolean showPrintJDialog() {
final PrintService objLdefaultPrintService = PrintServiceLookup.lookupDefaultPrintService();
final PrintRequestAttributeSet objLprintRequestAttributeSet = new HashPrintRequestAttributeSet();
if (this.objGprintServiceA.length > 0) {
int intLdefaultServiceIndex = 0;
if (objLdefaultPrintService != null) {
for (intLdefaultServiceIndex = 0; intLdefaultServiceIndex < this.objGprintServiceA.length; intLdefaultServiceIndex++) {
if (this.objGprintServiceA[intLdefaultServiceIndex].equals(objLdefaultPrintService)) {
break;
}
}
}
if (intLdefaultServiceIndex == this.objGprintServiceA.length) {
intLdefaultServiceIndex = 0;
}
ServiceUI.printDialog( null,
50,
50,
this.objGprintServiceA,
this.objGprintServiceA[intLdefaultServiceIndex],
null,
objLprintRequestAttributeSet);
final PrintJDialog objLprintJDialog = new PrintJDialog(this.objGcontrolJFrame, this.objGprintServiceA, intLdefaultServiceIndex);
objLprintJDialog.setVisible();
final PrintService objLprintService = objLprintJDialog.getPrintService();
objLprintJDialog.dispose();
if (objLprintService != null) {
final DocPrintJob objLdocPrintJob = objLprintService.createPrintJob();
final SimpleDoc objLsimpleDoc = new SimpleDoc(this, DocFlavor.SERVICE_FORMATTED.PRINTABLE, null);
try {
objLdocPrintJob.print(objLsimpleDoc, objLprintRequestAttributeSet);
return new Boolean(true);
} catch (final Throwable objPthrowable) {}
} else {
return null;
}
} else {
new PopUpJDialog( this.objGcontrolJFrame,
Constants.bytS_UNCLASS_NO_VALUE,
Constants.intS_FILE_ICON_ALERT,
this.objGcontrolJFrame.getLanguageString(Language.intS_TITLE_PRINT_PATTERN),
Tools.getLocaleString("dialog.noprintermsg"),
null,
true);
}
return new Boolean(false);
}