Chandra Eskay
Chandra Eskay

Reputation: 2203

Creating a report in java using xml as datasource

I'm working on creating a PDF bill report in java. I tried crystal reports, jasper reports but they require database connectivity. I'm looking on how to create reports using XML as a datasource. If anyone has worked on this before please guide me on how to proceed.

Upvotes: 0

Views: 899

Answers (1)

Boris Pavlović
Boris Pavlović

Reputation: 64650

Jasper reports don't need a database connection. They can use a collection of Java beans as their input. Transform the XML data source into custom Java objects or maps and pass them to a report.

Upvotes: 2

Related Questions