Click to See Complete Forum and Search --> : Java with Report
ychhuong
Jun 30th, 2006, 09:53 PM
I start learning Java Programming. I develop small java program that connect to database. Now I want to create a report for this application. for example, report of monthly stock out. I know we use Crystal Report in VB.NET. How about Java? Thanks.
ComputerJy
Jul 1st, 2006, 06:19 AM
http://sourceforge.net/project/showfiles.php?group_id=36382&package_id=28579
It's has a great documentation too
jetbrains
Jul 2nd, 2006, 09:20 PM
There have many reports tool in java,for example,stylereprot,jreport.If you want to use a free and open source report tool,I think ireport is a good choice.
ychhuong
Jul 2nd, 2006, 09:28 PM
Thank all. I have one more question. Can we use Crystal Report with Java? if yes, how?
jetbrains
Jul 2nd, 2006, 09:32 PM
Thank all. I have one more question. Can we use Crystal Report with Java? if yes, how?
yes,Of course.
I have generated a jsp report with crystal report
ychhuong
Jul 5th, 2006, 10:43 PM
Is there any sample of using Crystal Report with Java? I have tried JasperReport, but when I run it i alway got error. Here is my code.
try{
JasperReport jasperReport = JasperCompileManager.compileReport("HelloReportWorld.jrxml");
}
catch(JRException e){
e.printStackTrace();
}
Error Message:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/digester/Digester
at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java:142)
at Factoriel.main(Factoriel.java:12)
jetbrains
Jul 6th, 2006, 12:46 AM
JasperReport is a free and open source report tool based on java.but it's only a java API and hasn't GUI designer just like crystal report,moreover,the tutorial of jasperreport isn't free.
But there have so many free jasperreport tutorials,just like below link
http://www.developerzone.biz/index.php?option=com_content&task=view&id=109&Itemid=36&PHPSESSID=eecf4e5399eb7be0b898ab874e2e6a10
If you need a free designer,download ireport.
As to the error,you only need copy all jar files under iib directory into classpath,the problem will be sovle.
There also have many good java reports tool,like jreport and stylereport
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.