1. Summary
  2. Files
  3. Support
  4. Report Spam
  5. Create account
  6. Log in

Ticket #12751 (closed: invalid)

Opened 3 years ago

Last modified 3 years ago

problem in JROdsExporter (Bug)

Reported by: softexperttec Owned by:
Keywords: Bug Cc: daniel.beninca@…
Private: no

Description

Boa tarde, foi encontrado um problema na classe JROdsExporter, ao exporta um relatório de formato ods (Planilha OpenOffice), o mesmo é exportado com problemas como a falta de textos nas células das planilhas. O relatório é exportado para o formato ods com as células formatadas e como dito anterimente sem os devidos conteúdos de texto.

Segue abaixo o código utilizado para exporta o relatório.

public void exporterTo(FileOutputStream destFileName) throws JRException, IOException {

System.out.printf("Exportando o JasperReport...");
JasperPrint jasperPrint = JasperFillManager.fillReport(getJasperreport(), getParameter(), getCon());
JRAbstractExporter abstractExporter = this.getExporter();
abstractExporter.setParameters(getParameter());

abstractExporter.setParameter(JRXlsExporterParameter.JASPER_PRINT, jasperPrint);
abstractExporter.setParameter(JRXlsExporterParameter.OUTPUT_STREAM, destFileName);
abstractExporter.exportReport();
destFileName.close();
System.out.printf(" >> Concluído!");
}

@SuppressWarnings("unchecked")
public JRAbstractExporter getExporter() {

return new JROdsExporter();

}

Grato atenção,

Daniel Jony Beninca.
- Programador de Sistemas

Change History

Changed 3 years ago by ctsai

  • status changed from new to closed
  • resolution set to invalid

Hello,

SourceForge is a hosting provider for a number of open source software projects. However, we are only their hosting provider; we neither maintain nor support those projects. If you have questions or concerns regarding those projects, you will need to contact them directly.

I tried searching the site for "JROdsExporter" but I was unable to find that project, so, I can't direct you to any help resources that may be available. Projects all have a summary page in the form of:

http://sourceforge.net/projects/<project_UNIX_name>

Also, projects may offer a support page in the form of:

http://sourceforge.net/projects/<project_UNIX_name>/support/

Finally, many projects use the project web facility in the form of:

http://<project_UNIX_name>.sourceforge.net

I hope that helps!

Regards,
Chris Tsai, SourceForge.net Support

Note: See TracTickets for help on using tickets.