| java.lang.Object net.sf.jasperreports.engine.JasperFillManager
Method Summary | |
public static JasperPrint | fillReport(String sourceFileName, Map parameters, Connection connection) Fills the compiled report design loaded from the specified file and returns
the generated report object. | public static JasperPrint | fillReport(String sourceFileName, Map parameters) Fills the compiled report design loaded from the specified file and returns
the generated report object. | public static JasperPrint | fillReport(InputStream inputStream, Map parameters, Connection connection) Fills the compiled report design loaded from the supplied input stream and returns
the generated report object. | public static JasperPrint | fillReport(InputStream inputStream, Map parameters) Fills the compiled report design loaded from the supplied input stream and returns
the generated report object. | public static JasperPrint | fillReport(JasperReport jasperReport, Map parameters, Connection connection) Fills the compiled report design supplied as the first parameter and returns
the generated report object. | public static JasperPrint | fillReport(JasperReport jasperReport, Map parameters) Fills the compiled report design supplied as the first parameter and returns
the generated report object. | public static JasperPrint | fillReport(String sourceFileName, Map parameters, JRDataSource dataSource) Fills the compiled report design loaded from the specified file and returns
the generated report object. | public static JasperPrint | fillReport(InputStream inputStream, Map parameters, JRDataSource dataSource) Fills the compiled report design loaded from the supplied input stream and returns
the generated report object. | public static JasperPrint | fillReport(JasperReport jasperReport, Map parameters, JRDataSource dataSource) Fills the compiled report design supplied as the first parameter and returns
the generated report object. | public static String | fillReportToFile(String sourceFileName, Map parameters, Connection connection) Fills the compiled report design loaded from the specified file.
The result of this operation is another file that will contain the serialized
JasperPrint object representing the generated document,
having the same name as the report design as declared in the source file,
plus the *.jrprint extension, located in the same directory as the source file. | public static String | fillReportToFile(String sourceFileName, Map parameters) Fills the compiled report design loaded from the specified file.
The result of this operation is another file that will contain the serialized
JasperPrint object representing the generated document,
having the same name as the report design as declared in the source file,
plus the *.jrprint extension, located in the same directory as the source file. | public static void | fillReportToFile(String sourceFileName, String destFileName, Map parameters, Connection connection) Fills the compiled report design loaded from the file received as the first parameter
and places the result in the file specified by the second parameter. | public static void | fillReportToFile(String sourceFileName, String destFileName, Map parameters) Fills the compiled report design loaded from the file received as the first parameter
and places the result in the file specified by the second parameter. | public static void | fillReportToFile(JasperReport jasperReport, String destFileName, Map parameters, Connection connection) Fills the compiled report design received as the first parameter
and places the result in the file specified by the second parameter. | public static void | fillReportToFile(JasperReport jasperReport, String destFileName, Map parameters) Fills the compiled report design received as the first parameter
and places the result in the file specified by the second parameter. | public static String | fillReportToFile(String sourceFileName, Map parameters, JRDataSource dataSource) Fills the compiled report design loaded from the specified file.
The result of this operation is another file that will contain the serialized
JasperPrint object representing the generated document,
having the same name as the report design as declared in the source file,
plus the *.jrprint extension, located in the same directory as the source file. | public static void | fillReportToFile(String sourceFileName, String destFileName, Map parameters, JRDataSource dataSource) Fills the compiled report design loaded from the file received as the first parameter
and places the result in the file specified by the second parameter. | public static void | fillReportToFile(JasperReport jasperReport, String destFileName, Map parameters, JRDataSource dataSource) Fills the compiled report design received as the first parameter
and places the result in the file specified by the second parameter. | public static void | fillReportToStream(InputStream inputStream, OutputStream outputStream, Map parameters, Connection connection) Fills the compiled report design loaded from the supplied input stream and writes
the generated report object to the output stream specified by the second parameter. | public static void | fillReportToStream(InputStream inputStream, OutputStream outputStream, Map parameters) Fills the compiled report design loaded from the supplied input stream and writes
the generated report object to the output stream specified by the second parameter. | public static void | fillReportToStream(JasperReport jasperReport, OutputStream outputStream, Map parameters, Connection connection) Fills the compiled report design supplied as the first parameter and writes
the generated report object to the output stream specified by the second parameter. | public static void | fillReportToStream(JasperReport jasperReport, OutputStream outputStream, Map parameters) Fills the compiled report design supplied as the first parameter and writes
the generated report object to the output stream specified by the second parameter. | public static void | fillReportToStream(InputStream inputStream, OutputStream outputStream, Map parameters, JRDataSource dataSource) Fills the compiled report design loaded from the supplied input stream and writes
the generated report object to the output stream specified by the second parameter. | public static void | fillReportToStream(JasperReport jasperReport, OutputStream outputStream, Map parameters, JRDataSource dataSource) Fills the compiled report design supplied as the first parameter and writes
the generated report object to the output stream specified by the second parameter. |
fillReport | public static JasperPrint fillReport(String sourceFileName, Map parameters, Connection connection) throws JRException(Code) | | Fills the compiled report design loaded from the specified file and returns
the generated report object.
Parameters: sourceFileName - source file containing the compile report design Parameters: parameters - report parameters map Parameters: connection - JDBC connection object to use for executing the report internal SQL query generated report object |
fillReport | public static JasperPrint fillReport(String sourceFileName, Map parameters) throws JRException(Code) | | Fills the compiled report design loaded from the specified file and returns
the generated report object.
Parameters: sourceFileName - source file containing the compile report design Parameters: parameters - report parameters map generated report object See Also: JRFiller.fillReport(JasperReportMap) |
fillReport | public static JasperPrint fillReport(InputStream inputStream, Map parameters, Connection connection) throws JRException(Code) | | Fills the compiled report design loaded from the supplied input stream and returns
the generated report object.
Parameters: inputStream - input stream to read the compiled report design object from Parameters: parameters - report parameters map Parameters: connection - JDBC connection object to use for executing the report internal SQL query generated report object |
fillReport | public static JasperPrint fillReport(InputStream inputStream, Map parameters) throws JRException(Code) | | Fills the compiled report design loaded from the supplied input stream and returns
the generated report object.
Parameters: inputStream - input stream to read the compiled report design object from Parameters: parameters - report parameters map generated report object See Also: JRFiller.fillReport(JasperReportMap) |
fillReport | public static JasperPrint fillReport(JasperReport jasperReport, Map parameters, Connection connection) throws JRException(Code) | | Fills the compiled report design supplied as the first parameter and returns
the generated report object.
Parameters: jasperReport - compiled report design object to use for filling Parameters: parameters - report parameters map Parameters: connection - JDBC connection object to use for executing the report internal SQL query generated report object |
fillReport | public static JasperPrint fillReport(JasperReport jasperReport, Map parameters) throws JRException(Code) | | Fills the compiled report design supplied as the first parameter and returns
the generated report object.
Parameters: jasperReport - compiled report design object to use for filling Parameters: parameters - report parameters map generated report object See Also: JRFiller.fillReport(JasperReportMap) |
fillReport | public static JasperPrint fillReport(String sourceFileName, Map parameters, JRDataSource dataSource) throws JRException(Code) | | Fills the compiled report design loaded from the specified file and returns
the generated report object.
Parameters: sourceFileName - source file containing the compile report design Parameters: parameters - report parameters map Parameters: dataSource - data source object generated report object |
fillReport | public static JasperPrint fillReport(InputStream inputStream, Map parameters, JRDataSource dataSource) throws JRException(Code) | | Fills the compiled report design loaded from the supplied input stream and returns
the generated report object.
Parameters: inputStream - input stream to read the compiled report design object from Parameters: parameters - report parameters map Parameters: dataSource - data source object generated report object |
fillReport | public static JasperPrint fillReport(JasperReport jasperReport, Map parameters, JRDataSource dataSource) throws JRException(Code) | | Fills the compiled report design supplied as the first parameter and returns
the generated report object.
Parameters: jasperReport - compiled report design object to use for filling Parameters: parameters - report parameters map Parameters: dataSource - data source object generated report object |
fillReportToFile | public static String fillReportToFile(String sourceFileName, Map parameters, Connection connection) throws JRException(Code) | | Fills the compiled report design loaded from the specified file.
The result of this operation is another file that will contain the serialized
JasperPrint object representing the generated document,
having the same name as the report design as declared in the source file,
plus the *.jrprint extension, located in the same directory as the source file.
Parameters: sourceFileName - source file containing the compile report design Parameters: parameters - report parameters map Parameters: connection - JDBC connection object to use for executing the report internal SQL query |
fillReportToFile | public static String fillReportToFile(String sourceFileName, Map parameters) throws JRException(Code) | | Fills the compiled report design loaded from the specified file.
The result of this operation is another file that will contain the serialized
JasperPrint object representing the generated document,
having the same name as the report design as declared in the source file,
plus the *.jrprint extension, located in the same directory as the source file.
Parameters: sourceFileName - source file containing the compile report design Parameters: parameters - report parameters map See Also: JRFiller.fillReport(JasperReportMap) |
fillReportToFile | public static void fillReportToFile(String sourceFileName, String destFileName, Map parameters, Connection connection) throws JRException(Code) | | Fills the compiled report design loaded from the file received as the first parameter
and places the result in the file specified by the second parameter.
Parameters: sourceFileName - source file containing the compile report design Parameters: destFileName - file name to place the generated report into Parameters: parameters - report parameters map Parameters: connection - JDBC connection object to use for executing the report internal SQL query |
fillReportToFile | public static void fillReportToFile(String sourceFileName, String destFileName, Map parameters) throws JRException(Code) | | Fills the compiled report design loaded from the file received as the first parameter
and places the result in the file specified by the second parameter.
Parameters: sourceFileName - source file containing the compile report design Parameters: destFileName - file name to place the generated report into Parameters: parameters - report parameters map See Also: JRFiller.fillReport(JasperReportMap) |
fillReportToFile | public static void fillReportToFile(JasperReport jasperReport, String destFileName, Map parameters, Connection connection) throws JRException(Code) | | Fills the compiled report design received as the first parameter
and places the result in the file specified by the second parameter.
Parameters: jasperReport - compiled report design object to use for filling Parameters: destFileName - file name to place the generated report into Parameters: parameters - report parameters map Parameters: connection - JDBC connection object to use for executing the report internal SQL query |
fillReportToFile | public static void fillReportToFile(JasperReport jasperReport, String destFileName, Map parameters) throws JRException(Code) | | Fills the compiled report design received as the first parameter
and places the result in the file specified by the second parameter.
Parameters: jasperReport - compiled report design object to use for filling Parameters: destFileName - file name to place the generated report into Parameters: parameters - report parameters map See Also: JRFiller.fillReport(JasperReportMap) |
fillReportToFile | public static String fillReportToFile(String sourceFileName, Map parameters, JRDataSource dataSource) throws JRException(Code) | | Fills the compiled report design loaded from the specified file.
The result of this operation is another file that will contain the serialized
JasperPrint object representing the generated document,
having the same name as the report design as declared in the source file,
plus the *.jrprint extension, located in the same directory as the source file.
Parameters: sourceFileName - source file containing the compile report design Parameters: parameters - report parameters map Parameters: dataSource - data source object |
fillReportToFile | public static void fillReportToFile(String sourceFileName, String destFileName, Map parameters, JRDataSource dataSource) throws JRException(Code) | | Fills the compiled report design loaded from the file received as the first parameter
and places the result in the file specified by the second parameter.
Parameters: sourceFileName - source file containing the compile report design Parameters: destFileName - file name to place the generated report into Parameters: parameters - report parameters map Parameters: dataSource - data source object |
fillReportToFile | public static void fillReportToFile(JasperReport jasperReport, String destFileName, Map parameters, JRDataSource dataSource) throws JRException(Code) | | Fills the compiled report design received as the first parameter
and places the result in the file specified by the second parameter.
Parameters: jasperReport - compiled report design object to use for filling Parameters: destFileName - file name to place the generated report into Parameters: parameters - report parameters map Parameters: dataSource - data source object |
fillReportToStream | public static void fillReportToStream(InputStream inputStream, OutputStream outputStream, Map parameters, Connection connection) throws JRException(Code) | | Fills the compiled report design loaded from the supplied input stream and writes
the generated report object to the output stream specified by the second parameter.
Parameters: inputStream - input stream to read the compiled report design object from Parameters: outputStream - output stream to write the generated report object to Parameters: parameters - report parameters map Parameters: connection - JDBC connection object to use for executing the report internal SQL query |
fillReportToStream | public static void fillReportToStream(InputStream inputStream, OutputStream outputStream, Map parameters) throws JRException(Code) | | Fills the compiled report design loaded from the supplied input stream and writes
the generated report object to the output stream specified by the second parameter.
Parameters: inputStream - input stream to read the compiled report design object from Parameters: outputStream - output stream to write the generated report object to Parameters: parameters - report parameters map See Also: JRFiller.fillReport(JasperReportMap) |
fillReportToStream | public static void fillReportToStream(JasperReport jasperReport, OutputStream outputStream, Map parameters, Connection connection) throws JRException(Code) | | Fills the compiled report design supplied as the first parameter and writes
the generated report object to the output stream specified by the second parameter.
Parameters: jasperReport - compiled report design object to use for filling Parameters: outputStream - output stream to write the generated report object to Parameters: parameters - report parameters map Parameters: connection - JDBC connection object to use for executing the report internal SQL query |
fillReportToStream | public static void fillReportToStream(JasperReport jasperReport, OutputStream outputStream, Map parameters) throws JRException(Code) | | Fills the compiled report design supplied as the first parameter and writes
the generated report object to the output stream specified by the second parameter.
Parameters: jasperReport - compiled report design object to use for filling Parameters: outputStream - output stream to write the generated report object to Parameters: parameters - report parameters map See Also: JRFiller.fillReport(JasperReportMap) |
fillReportToStream | public static void fillReportToStream(InputStream inputStream, OutputStream outputStream, Map parameters, JRDataSource dataSource) throws JRException(Code) | | Fills the compiled report design loaded from the supplied input stream and writes
the generated report object to the output stream specified by the second parameter.
Parameters: inputStream - input stream to read the compiled report design object from Parameters: outputStream - output stream to write the generated report object to Parameters: parameters - report parameters map Parameters: dataSource - data source object |
fillReportToStream | public static void fillReportToStream(JasperReport jasperReport, OutputStream outputStream, Map parameters, JRDataSource dataSource) throws JRException(Code) | | Fills the compiled report design supplied as the first parameter and writes
the generated report object to the output stream specified by the second parameter.
Parameters: jasperReport - compiled report design object to use for filling Parameters: outputStream - output stream to write the generated report object to Parameters: parameters - report parameters map Parameters: dataSource - data source object |
|
|