Page 1 of 2

The problem of export file

Posted: Wed May 11, 2016 1:56 pm
by heqichao
hello,I have a problem when I use the Stimulsoft report fx.
I set the relation about two table
Image
Image

and the report is like this
Image

It is right when I export the report to excel on the web,
but it throw the exception when I export by java code

Code: Select all

StiReport report =StiSerializeManager.deserializeReport(new File(reportPath));
			report.render();
			FileOutputStream fout = new FileOutputStream(new File(excelPath));
			StiExcelExportService s =new StiExcelExportService();
			s.exportExcel(report, fout, new StiExcelExportSettings());
thank

Re: The problem of export file

Posted: Wed May 11, 2016 1:58 pm
by heqichao
and the exception is like this
Image

Re: The problem of export file

Posted: Thu May 12, 2016 9:07 am
by Vadim
Hello.
Do you use latest version Stimulsoft Reports.Java 2016.1.11 from 2016.05.06 ?

Re: The problem of export file

Posted: Fri May 13, 2016 6:22 am
by heqichao
thank

Re: The problem of export file

Posted: Fri May 13, 2016 7:52 am
by Alex K.
Hello,

Let us know if you need any additional help.

Thank you.

Re: The problem of export file

Posted: Sun May 15, 2016 6:39 am
by heqichao
Hello.
I have problem,I design a report by Windows Installer is like that
Image
It is easy to design and review the report,
but when in the web designer, it is like this
Image
It is so difficulty to design or review the report .

Re: The problem of export file

Posted: Mon May 16, 2016 6:29 am
by Vadim
Hello.
Can you send us report for analize?

Re: The problem of export file

Posted: Mon May 16, 2016 12:42 pm
by heqichao

Re: The problem of export file

Posted: Tue May 17, 2016 7:15 am
by Vadim
Hello.
We test your report, & it looks fine.
You can test in http://java.stimulsoft.com/designer.jsp

Re: The problem of export file

Posted: Tue May 17, 2016 10:29 am
by heqichao
Hello I find the reason because I set the code

Code: Select all

report.Render(true);