Tagged Questions
0
votes
0answers
730 views
java.net.MalformedURLException
I am working on an Ofbiz application and I'm trying to render a PDF file containing reports through jasperreports, but it says 'Failed to load PDF document'. I keep getting this the ...
1
vote
1answer
849 views
JTable to iReport
I'm trying to get the data that I have in a JTable and print it like a report using Jasper Reports. I've found Usando o JRBeanCollectionDataSource and Java beans as Jasper Reports data source using ...
0
votes
1answer
331 views
generating pdf using jrxml [duplicate]
Possible Duplicate:
jasper ireport field length problem
I'm working on this web application done using spring.
it generates pdf files using .jrxml files.
the problem i'm facing is when ...
1
vote
1answer
1k views
Can JasperReport insert some specified images/content to a particular page number?
Let say i want to print a image on page 2.
If page 1 has a lot of content, page 1 content will split to page 1 and page 3,
while page 2 is still that image.
Can that be done in pdf generation ?
...
0
votes
0answers
416 views
How to use crosstab in iReport with XML file
I have a XML data source like this:
<root>
<node>
<child>mouse</child>
<notes>
<name>a</name>
...
3
votes
1answer
1k views
How to erase rows in a table if an expression is valid in iReport
I have a table in iReport with 3 fields (A, B, C). I would to print the row iff field C is not null. For example if I have 2 records in my data source:
A = first, B = second, C = third
A = up, B = ...
0
votes
1answer
1k views
Detail band longer than necessary in iReport
I have a detail band with text fields and a table. In the designer view I have fit all the band, but when I see the preview the lowest text field is higher than the first text field in the next band ...
0
votes
1answer
488 views
download report as pdf using servlet
I have the pdf file location and pdf file in my POJO class. I want to download thee pdf using servlet. Please tell me some ways to get it done.
File Location=/tmp/SWBC_444Thu May 03 20:01:07 IST ...
2
votes
1answer
1k views
PDFs look differnet when exported by Jasper Reports on Windows and on Linux (Debian)
When we're exporting PDFs in Windows they look ok, but when deployed to test server on Linux, they look different, i.e. basically the situation is the same as in ...
1
vote
0answers
631 views
JasperReport: Is it possible to set Initial Zoom in PDF?
I have a JasperPrint that is exported to PDF and it's showing embedded into a web page.
Is it possible to set the initial zoom in any way?
I know how to do it with POI (by javascript), but I don't ...
0
votes
3answers
988 views
How To Use an external font TTF file which defines a font in foreign language and then use it in a JRXML file?
I am trying to create a pdf document which is internationalized, My specific requirement is to generate a pdf document which has text elements defined in "Marathi" language. I have the TTF file for ...
0
votes
1answer
679 views
Examples on how to export PDF to PowerPoint using Jasper Reports JRPPTxExpoter
Does anyone have any experience exporting a PDF to a PPT using the JRPptxExporter in Jasper Reports?
Here is the code that is supposed to do the export:
JRPptxExporter exporter = new JRPptxExporter ...
0
votes
1answer
218 views
Jasper Reports - Cannot Find Report
I am running Jasper Reports with Apache Ant. When I go to generate a sample report into a pdf I run this:
root@server~$ /home/user/apache-ant-1.8.2/bin/ant pdf
Buildfile: ...
0
votes
0answers
149 views
Jasper Reports - Finding PDF report
I am using CentOS 5 and have Jasper Reports installed and working with Apache ANT and Java JDK. Everything is building/running successfully, but when I do an "ant pdf" on one
of the sample reports, it ...
0
votes
1answer
1k views
Jasper Report Generates a PDF and then Glassfish crashes/shutsdown
I am running an app I have developed in JSF/Java and as soon as I got JasperReports ExporttoPDFFile to start working and ran the app, the jrxml is compiled and displayed, then exported to a pdf file, ...
3
votes
4answers
1k views
Converting .xls to .pdf using Java(or not)
Is there a way to convert a xls file into a pdf?
I want to make a dynamical report directly to pdf file, but didn't find a way to make dynamic columns on iReport, so I've made a method on Java that ...
7
votes
5answers
5k views
PDF Generation Library for Java
I know this has been asked before, but I'm still undecided on which PDF generation framework to use for my current project.
My requirements
on-the-fly generation of PDF documents (mainly order ...
0
votes
3answers
1k views
Jasper reports PDF tagging
I have heard that you can tag PDF documents generated using Jasper Reports but I haven't found any examples of how to do it.
Does anyone here have an example of how you would tag a PDF document?
I'm ...
0
votes
2answers
5k views
Jasper Reports + PDF generation issue
I have a jasper report that I'm displaying. Now I have an icon to get the same report in PDF.
Now when I deploy the code in an OS with Tomcat it works fine, but the problem I'm facing now is that, we ...
1
vote
3answers
711 views
Long text input from user and PDF generation
I have built a web application that can be seen as an overcomplicated application form. There are bunch of text areas with a given character limit. After the form submission various things happen and ...
2
votes
3answers
2k views
Has anybody tried html2pdf in django?
Ok when im gonna make reports with Java I use iReport for JasperReports Template designs.
But with python the alternative is html2pdf - pisa.
It would be great to see an example of this.
Any hint ...
0
votes
1answer
1k views
Can JasperReports include a pdf in a report?
Is it possible to include an existing pdf file in a JasperReport?
We really want to append new data to an existing report with out regenerating the existing report. We will be exporting back to ...
3
votes
3answers
8k views
Generating and Displaying PDF file in Flex/Java
We have Flex on the front end and Java on the back end. When a user will request for a PDF file, request will go to the Java backend, where a PDF file will be generated using Jasper Reports. What we ...