public final class JasperPrintManager
extends java.lang.Object
After having filled a report, you have the option of viewing it, exporting it to a different format, or (most commonly) printing it.
In JasperReports, you can print reports using this manager class. It contains various methods that
can send entire documents or portions of them to the printer. It also allows people to choose
whether to display the print dialog. one can display the content of a page from a
JasperReports document by generating a java.awt.Image
object for it using this
manager class.
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
EXCEPTION_MESSAGE_KEY_NO_AVAILABLE_PRINTER |
static java.lang.String |
PROPERTY_CHECK_AVAILABLE_PRINTERS
Property whose value is used to check the availability of printers accepting jobs.
|
protected static boolean |
unixSunJDK |
Modifier and Type | Method and Description |
---|---|
static JasperPrintManager |
getInstance(JasperReportsContext jasperReportsContext) |
boolean |
print(java.io.InputStream inputStream,
boolean withPrintDialog) |
boolean |
print(java.io.InputStream inputStream,
int pageIndex,
boolean withPrintDialog) |
boolean |
print(java.io.InputStream inputStream,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog) |
boolean |
print(JasperPrint jasperPrint,
boolean withPrintDialog) |
boolean |
print(JasperPrint jasperPrint,
int pageIndex,
boolean withPrintDialog) |
boolean |
print(JasperPrint jasperPrint,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog) |
boolean |
print(java.lang.String sourceFileName,
boolean withPrintDialog) |
boolean |
print(java.lang.String sourceFileName,
int pageIndex,
boolean withPrintDialog) |
boolean |
print(java.lang.String sourceFileName,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog) |
static boolean |
printPage(java.io.InputStream inputStream,
int pageIndex,
boolean withPrintDialog) |
static boolean |
printPage(JasperPrint jasperPrint,
int pageIndex,
boolean withPrintDialog) |
static boolean |
printPage(java.lang.String sourceFileName,
int pageIndex,
boolean withPrintDialog) |
static boolean |
printPages(java.io.InputStream inputStream,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog) |
static boolean |
printPages(JasperPrint jasperPrint,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog) |
static boolean |
printPages(java.lang.String sourceFileName,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog) |
static java.awt.Image |
printPageToImage(java.io.InputStream inputStream,
int pageIndex,
float zoom) |
static java.awt.Image |
printPageToImage(JasperPrint jasperPrint,
int pageIndex,
float zoom) |
static java.awt.Image |
printPageToImage(java.lang.String sourceFileName,
int pageIndex,
float zoom) |
static boolean |
printReport(java.io.InputStream inputStream,
boolean withPrintDialog) |
static boolean |
printReport(JasperPrint jasperPrint,
boolean withPrintDialog) |
static boolean |
printReport(java.lang.String sourceFileName,
boolean withPrintDialog) |
java.awt.Image |
printToImage(java.io.InputStream inputStream,
int pageIndex,
float zoom) |
java.awt.Image |
printToImage(JasperPrint jasperPrint,
int pageIndex,
float zoom) |
java.awt.Image |
printToImage(java.lang.String sourceFileName,
int pageIndex,
float zoom) |
public static final java.lang.String EXCEPTION_MESSAGE_KEY_NO_AVAILABLE_PRINTER
public static final java.lang.String PROPERTY_CHECK_AVAILABLE_PRINTERS
true
.protected static final boolean unixSunJDK
public static JasperPrintManager getInstance(JasperReportsContext jasperReportsContext)
public boolean print(java.lang.String sourceFileName, boolean withPrintDialog) throws JRException
JRException
public boolean print(java.io.InputStream inputStream, boolean withPrintDialog) throws JRException
JRException
public boolean print(JasperPrint jasperPrint, boolean withPrintDialog) throws JRException
JRException
public boolean print(java.lang.String sourceFileName, int pageIndex, boolean withPrintDialog) throws JRException
JRException
public boolean print(java.io.InputStream inputStream, int pageIndex, boolean withPrintDialog) throws JRException
JRException
public boolean print(JasperPrint jasperPrint, int pageIndex, boolean withPrintDialog) throws JRException
JRException
public boolean print(java.lang.String sourceFileName, int firstPageIndex, int lastPageIndex, boolean withPrintDialog) throws JRException
JRException
public boolean print(java.io.InputStream inputStream, int firstPageIndex, int lastPageIndex, boolean withPrintDialog) throws JRException
JRException
public boolean print(JasperPrint jasperPrint, int firstPageIndex, int lastPageIndex, boolean withPrintDialog) throws JRException
JRException
public java.awt.Image printToImage(java.lang.String sourceFileName, int pageIndex, float zoom) throws JRException
JRException
public java.awt.Image printToImage(java.io.InputStream inputStream, int pageIndex, float zoom) throws JRException
JRException
public java.awt.Image printToImage(JasperPrint jasperPrint, int pageIndex, float zoom) throws JRException
JRException
public static boolean printReport(java.lang.String sourceFileName, boolean withPrintDialog) throws JRException
JRException
print(String, boolean)
public static boolean printReport(java.io.InputStream inputStream, boolean withPrintDialog) throws JRException
JRException
print(InputStream, boolean)
public static boolean printReport(JasperPrint jasperPrint, boolean withPrintDialog) throws JRException
JRException
print(JasperPrint, boolean)
public static boolean printPage(java.lang.String sourceFileName, int pageIndex, boolean withPrintDialog) throws JRException
JRException
print(String, int, boolean)
public static boolean printPage(java.io.InputStream inputStream, int pageIndex, boolean withPrintDialog) throws JRException
JRException
print(InputStream, int, boolean)
public static boolean printPage(JasperPrint jasperPrint, int pageIndex, boolean withPrintDialog) throws JRException
JRException
print(JasperPrint, int, boolean)
public static boolean printPages(java.lang.String sourceFileName, int firstPageIndex, int lastPageIndex, boolean withPrintDialog) throws JRException
JRException
print(String, int, int, boolean)
public static boolean printPages(java.io.InputStream inputStream, int firstPageIndex, int lastPageIndex, boolean withPrintDialog) throws JRException
JRException
print(InputStream, int, int, boolean)
public static boolean printPages(JasperPrint jasperPrint, int firstPageIndex, int lastPageIndex, boolean withPrintDialog) throws JRException
JRException
print(JasperPrint, int, int, boolean)
public static java.awt.Image printPageToImage(java.lang.String sourceFileName, int pageIndex, float zoom) throws JRException
JRException
printToImage(String, int, float)
public static java.awt.Image printPageToImage(java.io.InputStream inputStream, int pageIndex, float zoom) throws JRException
JRException
printToImage(InputStream, int, float)
public static java.awt.Image printPageToImage(JasperPrint jasperPrint, int pageIndex, float zoom) throws JRException
JRException
printToImage(JasperPrint, int, float)
© 2001-2014 TIBCO Software Inc. www.jaspersoft.com