Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > Report/letter production for Java?

Reply
Thread Tools

Report/letter production for Java?

 
 
Dave
Guest
Posts: n/a
 
      06-03-2006
I am considering building a financial application using Java SE and a
database back-end. The only area of concern for me is how I would produce
letters or reports with the Java application.

I would like the application to be able to produce letters which will be
automatically printed out (to be sent out to customers). I would also like
to be able to produce attractive reports which management staff can print
out.

For example, if MS Access is used, it has a very simple built-in "reports"
feature which can produce nice reports and letters. Obviously something like
Crystal Reports would be an option but that doesn't fit in with the
cost-model of this application due to license costs. HTML is an option, but
I'm not sure how easily this can interface with the Java application and
produce data-merged letters.

Does anyone have any suggestions as to what I can use?


 
Reply With Quote
 
 
 
 
steve
Guest
Posts: n/a
 
      06-03-2006
On Sat, 3 Jun 2006 18:26:05 +0800, Dave wrote
(in article <1tdgg.1984$>):

> I am considering building a financial application using Java SE and a
> database back-end. The only area of concern for me is how I would produce
> letters or reports with the Java application.
>
> I would like the application to be able to produce letters which will be
> automatically printed out (to be sent out to customers). I would also like
> to be able to produce attractive reports which management staff can print
> out.
>
> For example, if MS Access is used, it has a very simple built-in "reports"
> feature which can produce nice reports and letters. Obviously something like
> Crystal Reports would be an option but that doesn't fit in with the
> cost-model of this application due to license costs. HTML is an option, but
> I'm not sure how easily this can interface with the Java application and
> produce data-merged letters.
>
> Does anyone have any suggestions as to what I can use?
>
>



Ireports & jasperreports.

lay your letters out , get your data from a database, render to pdf & email
or fax.

Steve

 
Reply With Quote
 
 
 
 
Dave
Guest
Posts: n/a
 
      06-03-2006
"steve" <> wrote in message
news:...
> On Sat, 3 Jun 2006 18:26:05 +0800, Dave wrote
> (in article <1tdgg.1984$>):
>
>> I am considering building a financial application using Java SE and a
>> database back-end. The only area of concern for me is how I would produce
>> letters or reports with the Java application.
>>
>> I would like the application to be able to produce letters which will be
>> automatically printed out (to be sent out to customers). I would also
>> like
>> to be able to produce attractive reports which management staff can print
>> out.
>>
>> For example, if MS Access is used, it has a very simple built-in
>> "reports"
>> feature which can produce nice reports and letters. Obviously something
>> like
>> Crystal Reports would be an option but that doesn't fit in with the
>> cost-model of this application due to license costs. HTML is an option,
>> but
>> I'm not sure how easily this can interface with the Java application and
>> produce data-merged letters.
>>
>> Does anyone have any suggestions as to what I can use?
>>
>>

>
>
> Ireports & jasperreports.
>
> lay your letters out , get your data from a database, render to pdf &
> email
> or fax.
>
> Steve


Thanks Steve.

Can I implement JasperReports in a J2SE application, or does it have to be
J2EE?


 
Reply With Quote
 
steve
Guest
Posts: n/a
 
      06-03-2006
On Sat, 3 Jun 2006 19:15:20 +0800, Dave wrote
(in article <cbegg.3569$>):

> "steve" <> wrote in message
> news:...
>> On Sat, 3 Jun 2006 18:26:05 +0800, Dave wrote
>> (in article <1tdgg.1984$>):
>>
>>> I am considering building a financial application using Java SE and a
>>> database back-end. The only area of concern for me is how I would produce
>>> letters or reports with the Java application.
>>>
>>> I would like the application to be able to produce letters which will be
>>> automatically printed out (to be sent out to customers). I would also
>>> like
>>> to be able to produce attractive reports which management staff can print
>>> out.
>>>
>>> For example, if MS Access is used, it has a very simple built-in
>>> "reports"
>>> feature which can produce nice reports and letters. Obviously something
>>> like
>>> Crystal Reports would be an option but that doesn't fit in with the
>>> cost-model of this application due to license costs. HTML is an option,
>>> but
>>> I'm not sure how easily this can interface with the Java application and
>>> produce data-merged letters.
>>>
>>> Does anyone have any suggestions as to what I can use?
>>>
>>>

>>
>>
>> Ireports & jasperreports.
>>
>> lay your letters out , get your data from a database, render to pdf &
>> email
>> or fax.
>>
>> Steve

>
> Thanks Steve.
>
> Can I implement JasperReports in a J2SE application, or does it have to be
> J2EE?
>
>


read the class notes, but yes you can use it in either. I think the
minimum is java 1.4 but i'm not sure.( itext is 1.2/1.3)
I already use the above system for building complex documents, not just
letters & forms

steve

 
Reply With Quote
 
Alex Molochnikov
Guest
Posts: n/a
 
      06-04-2006
Scribe can do this for you.
www.reportgenerator.org

"Dave" <> wrote in message
news:1tdgg.1984$...
> I am considering building a financial application using Java SE and a
> database back-end. The only area of concern for me is how I would produce
> letters or reports with the Java application.
>
> I would like the application to be able to produce letters which will be
> automatically printed out (to be sent out to customers). I would also like
> to be able to produce attractive reports which management staff can print
> out.
>
> For example, if MS Access is used, it has a very simple built-in "reports"
> feature which can produce nice reports and letters. Obviously something

like
> Crystal Reports would be an option but that doesn't fit in with the
> cost-model of this application due to license costs. HTML is an option,

but
> I'm not sure how easily this can interface with the Java application and
> produce data-merged letters.
>
> Does anyone have any suggestions as to what I can use?
>
>



 
Reply With Quote
 
ducnbyu
Guest
Posts: n/a
 
      06-04-2006
Dave wrote:
> I am considering building a financial application using Java SE and a
> database back-end. The only area of concern for me is how I would produce
> letters or reports with the Java application.


I haven't used it, but you might consider BIRT (Business Intelligence
and Reporting Tools)

http://www.eclipse.org/birt/phoenix/

It's open source and integrates with Java. Also works with MySQL open
source database engine in case you are looking for free stuff.

 
Reply With Quote
 
steve
Guest
Posts: n/a
 
      06-04-2006
On Sun, 4 Jun 2006 10:22:20 +0800, ducnbyu wrote
(in article <. com>):

> Dave wrote:
>> I am considering building a financial application using Java SE and a
>> database back-end. The only area of concern for me is how I would produce
>> letters or reports with the Java application.

>
> I haven't used it, but you might consider BIRT (Business Intelligence
> and Reporting Tools)
>
> http://www.eclipse.org/birt/phoenix/
>
> It's open source and integrates with Java. Also works with MySQL open
> source database engine in case you are looking for free stuff.
>


yes but is is not exactly light weight or easy to set up.

steve

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ECS Production Tour 2005: How to build a mainboard Silverstrand Front Page News 1 06-26-2005 05:22 PM
My option when a module is not available for my production OS. chung.ley@amd.com Perl 3 03-29-2005 07:50 AM
Add business logic to production application. =?Utf-8?B?RHNoYWg=?= MCSE 0 03-04-2005 10:09 PM
duplicate projects in production Matthew ASP .Net 0 04-06-2004 09:24 PM
How to map Project directories to Production sub-directories Joel Finkel ASP .Net 0 09-12-2003 06:47 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57