本文整理匯總了Java中net.sf.jasperreports.export.SimpleXmlExporterOutput.setEmbeddingImages方法的典型用法代碼示例。如果您正苦於以下問題:Java SimpleXmlExporterOutput.setEmbeddingImages方法的具體用法?Java SimpleXmlExporterOutput.setEmbeddingImages怎麽用?Java SimpleXmlExporterOutput.setEmbeddingImages使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類net.sf.jasperreports.export.SimpleXmlExporterOutput
的用法示例。
在下文中一共展示了SimpleXmlExporterOutput.setEmbeddingImages方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: exportToXmlFile
import net.sf.jasperreports.export.SimpleXmlExporterOutput; //導入方法依賴的package包/類
/**
* Exports the generated report object received as parameter into XML format,
* placing the result into the second file parameter.
* <p>
* If not embedded into the XML content itself using the Base64 encoder,
* the images are placed as distinct files inside a directory having the same name
* as the XML destination file, plus the "_files" suffix.
*
* @param jasperPrint report object to export
* @param destFileName file name to place the XML representation into
* @param isEmbeddingImages flag that indicates whether the images should be embedded in the
* XML content itself using the Base64 encoder or be referenced as external resources
*
* @see net.sf.jasperreports.engine.export.JRPdfExporter
*/
public void exportToXmlFile(
JasperPrint jasperPrint,
String destFileName,
boolean isEmbeddingImages
) throws JRException
{
JRXmlExporter exporter = new JRXmlExporter(jasperReportsContext);
exporter.setExporterInput(new SimpleExporterInput(jasperPrint));
SimpleXmlExporterOutput xmlOutput = new SimpleXmlExporterOutput(destFileName);
xmlOutput.setEmbeddingImages(isEmbeddingImages);
exporter.setExporterOutput(xmlOutput);
exporter.exportReport();
}
示例2: elementToXml
import net.sf.jasperreports.export.SimpleXmlExporterOutput; //導入方法依賴的package包/類
protected String elementToXml(JRPrintElement element)
{
JRBasePrintPage page = new JRBasePrintPage();
page.addElement(element);
JasperPrint jasperPrint = new JasperPrint();
jasperPrint.addPage(page);
jasperPrint.setName("test");
StringWriter writer = new StringWriter();
JRXmlExporter exporter = new JRXmlExporter();
exporter.setExporterInput(new SimpleExporterInput(jasperPrint));
SimpleXmlExporterOutput output = new SimpleXmlExporterOutput(writer);
output.setEmbeddingImages(true);
exporter.setExporterOutput(output);
try
{
exporter.exportReport();
}
catch (JRException e)
{
throw new RuntimeException(e);
}
return writer.toString();
}
示例3: save
import net.sf.jasperreports.export.SimpleXmlExporterOutput; //導入方法依賴的package包/類
@Override
public void save(JasperPrint jasperPrint, File file) throws JRException
{
if (
!file.getName().toLowerCase().endsWith(EXTENSION_XML)
&& !file.getName().toLowerCase().endsWith(EXTENSION_JRPXML)
)
{
file = new File(file.getAbsolutePath() + EXTENSION_JRPXML);
}
if (
!file.exists() ||
JOptionPane.OK_OPTION ==
JOptionPane.showConfirmDialog(
null,
MessageFormat.format(
getBundleString("file.exists"),
new Object[]{file.getName()}
),
getBundleString("save"),
JOptionPane.OK_CANCEL_OPTION
)
)
{
JRXmlExporter exporter = new JRXmlExporter(getJasperReportsContext());
exporter.setExporterInput(new SimpleExporterInput(jasperPrint));
SimpleXmlExporterOutput output = new SimpleXmlExporterOutput(file);
output.setEmbeddingImages(true);
exporter.setExporterOutput(output);
exporter.exportReport();
}
}
示例4: save
import net.sf.jasperreports.export.SimpleXmlExporterOutput; //導入方法依賴的package包/類
@Override
public void save(JasperPrint jasperPrint, File file) throws JRException
{
if (
!file.getName().toLowerCase().endsWith(EXTENSION_XML)
&& !file.getName().toLowerCase().endsWith(EXTENSION_JRPXML)
)
{
file = new File(file.getAbsolutePath() + EXTENSION_JRPXML);
}
if (
!file.exists() ||
JOptionPane.OK_OPTION ==
JOptionPane.showConfirmDialog(
null,
MessageFormat.format(
getBundleString("file.exists"),
new Object[]{file.getName()}
),
getBundleString("save"),
JOptionPane.OK_CANCEL_OPTION
)
)
{
JRXmlExporter exporter = new JRXmlExporter(getJasperReportsContext());
exporter.setExporterInput(new SimpleExporterInput(jasperPrint));
SimpleXmlExporterOutput output = new SimpleXmlExporterOutput(file);
output.setEmbeddingImages(false);
exporter.setExporterOutput(output);
exporter.exportReport();
}
}
示例5: xmlExport
import net.sf.jasperreports.export.SimpleXmlExporterOutput; //導入方法依賴的package包/類
protected void xmlExport(JasperPrint print, OutputStream out) throws JRException, IOException
{
JRXmlExporter exporter = new JRXmlExporter();
exporter.setExporterInput(new SimpleExporterInput(print));
SimpleXmlExporterOutput output = new SimpleXmlExporterOutput(out);
output.setEmbeddingImages(true);
exporter.setExporterOutput(output);
exporter.exportReport();
out.close();
}
示例6: getExporter
import net.sf.jasperreports.export.SimpleXmlExporterOutput; //導入方法依賴的package包/類
@Override
protected JRXmlExporter getExporter(JasperReportsConfiguration jContext, JRExportProgressMonitor monitor, File file) {
JRXmlExporter exp = new JRXmlExporter(jContext);
SimpleXmlExporterOutput expOut = new SimpleXmlExporterOutput(file);
expOut.setEmbeddingImages(Boolean.TRUE);
exp.setExporterOutput(expOut);
SimpleReportExportConfiguration rconf = new SimpleReportExportConfiguration();
setupReportConfiguration(rconf, monitor);
exp.setConfiguration(rconf);
return exp;
}
示例7: getExporter
import net.sf.jasperreports.export.SimpleXmlExporterOutput; //導入方法依賴的package包/類
@Override
protected JRXmlExporter getExporter(JasperReportsConfiguration jContext, JRExportProgressMonitor monitor, File file) {
JRXmlExporter exp = new JRXmlExporter(jContext);
SimpleXmlExporterOutput expOut = new SimpleXmlExporterOutput(file);
expOut.setEmbeddingImages(Boolean.FALSE);
exp.setExporterOutput(expOut);
SimpleReportExportConfiguration rconf = new SimpleReportExportConfiguration();
setupReportConfiguration(rconf, monitor);
exp.setConfiguration(rconf);
return exp;
}
示例8: xml
import net.sf.jasperreports.export.SimpleXmlExporterOutput; //導入方法依賴的package包/類
private JRXmlExporter xml(JasperIXmlExporter jasperExporter) {
SimpleXmlExporterOutput exporterOutput = simpleXmlExporterOutput(jasperExporter);
if (jasperExporter.getEmbeddingImages() != null) {
exporterOutput.setEmbeddingImages(jasperExporter.getEmbeddingImages());
}
SimpleReportExportConfiguration reportExportConfiguration = new SimpleReportExportConfiguration();
reportExportConfiguration(reportExportConfiguration, jasperExporter);
SimpleExporterConfiguration exporterConfiguration = new SimpleExporterConfiguration();
JRXmlExporter jrExporter = new JRXmlExporter();
jrExporter.setExporterOutput(exporterOutput);
jrExporter.setConfiguration(reportExportConfiguration);
jrExporter.setConfiguration(exporterConfiguration);
return jrExporter;
}