Jump to content
We've recently updated our Privacy Statement, available here ×

hell_tej

Members
  • Posts

    7
  • Joined

  • Last visited

hell_tej's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Sorry Mr. Giulio, But it still have problem. I checked all librarys and replace them to iReport plugin verson's library in which report created. But still when i install it on other computer,it returns NullPointerException. what can i do for it Please please please please please please please HELP ME......................My examinar will check my project after two days Post Edited by Tejas Sheth at 04/09/09 14:23
  2. Thanks Mr. Giulio Toffoli for Reply, I tried your suggestions in my project. I include following JAR file library in my NetBeans Project. (1).commons-beanutils-1.7.jar (2).commons-collections-2.1.jar (3).commons-digester-1.7.jar (4).commons-logging-1.1.jar (5).groovy-all-1.5.5.jar (6).jakarta-bcel-20050813.jar (7).jaxen-1.1.1.jar (8).jcommon-1.0.15.jar (9).jfreechart-1.0.12.jar (10). jpa.jar (11). hxl-1.6.jar (12).png-encoder-1.5.jar (13).poi-3.2-FINAL-20081019.jar (14). jasperreports-3.1.3.jar (15). xalan.jar (16). xercesImpl.jar (17). xml-apis.jar (18). batik-anim.jar (19).batik-awt-util.jar (20).batik-bridge.jar (21). batik-css.jar (22) batik-dom.jar (23). batik-ext.jar (24). batik-gvt.jar (25). batik-parser.jar (26). batik-script.jar (27). batik-svg-dom.jar (28).batik-svggen.jar (29). batik-util.jar (30). batik-xml.jar (31).iText.jar (32).rhino-1.7R1.jar (33).xml-apis-ext.jar (34).jasperreports-chart-themes-3.1.2.jar I am creating a JobPlacement Swing Based Desktop Application which has 4 tables. I was created reports for each table using iReport Plugin of NetBeans 6.0. then I create a setup file using InstallShild 2009. It works excellent when I install setup on My computer , when I was install that project on other computer and run project’s .jar. My Swing Based Application runs fine but only the Report Occurs problem when I tried to load it. I also tried to install iReport Software .exe file on that computer but still it not works.Is JasperServer or something needed. Or if any other JAR or API needed to run my report on another computer Platform :- Windows XPDatabase:- MS Access 2003 IDE :-NetBeans 6.0App. :- JAVA Swing Desktop Applicationi use following code to view report. Code:try { String reportName = "universaljobforce/candidate.jasper"; InputStream is = this.getClass().getClassLoader().getResourceAsStream(reportName); JasperPrint jasperPrint = JasperFillManager.fillReport(is, new HashMap(), DB.connect()); JasperViewer jv = new JasperViewer(jasperPrint); jv.setVisible(true); } catch(Exception e) { System.out.println("Report Error"+e); }
  3. Please Solve my problem i have to submit my project after 5 days to my examinar. still i have problem that i can't run by Jasper Report in other computer. my whole NetBeans Project runs properly but when i click on button of report it displays NullPointerException. in my computer it works properly. please Help...
  4. I Include Following Library jar files 1).jasperreports-3.1.3.jar 2).jasperreports-chart-themes-3.1.2.jar 3).commons-beanutils-1.7.jar 4).commons-collections-2.1.jar 5).commons-digester-1.7.jar 6).commons-logging-1.1.jar 7).iText-2.1.0.jar but still that problem, when i run my Swing desktop application on another computer,Report can't visible when i click on swing Button of Report.
  5. my NetBeans Jar file which holds the report .jasper files can't work i Think it cause of that computer has only JDK 6.0 it has no other iReport Plugin or iReport Software so without it's supported file it can't run. am i right or not? What's the solution of it please Help!!!
  6. my Desktop Application is based on NetBeans 6.0 and i use iReport to display Report. It works Properly on my Computer but when i run jar file on another computer(Customer Computer), Report can't run! so what's th problem? shell i add any type of Library or other supported file to run iReport on user computer.i am giving you my code which is used to display report from my Swing Menu. Code:try { String reportName = "universaljobforce/candidate.jasper"; InputStream is = this.getClass().getClassLoader().getResourceAsStream(reportName); JasperPrint jasperPrint = JasperFillManager.fillReport(is, new HashMap(), DB.connect()); JasperViewer jv = new JasperViewer(jasperPrint); jv.setVisible(true); } catch(Exception e) { System.out.println("Report Error"+e); }
  7. hi Friends, i am a new user and i am a student of BCA Creating a Project on JAVA using NetBeans 6.0. I found iReport from my Friend's Mail i already know how to create simple Report using iReport plug-in of NetBeans 6.0. But i Don't know how to show that report from my MDI Form.( Means I want to shwow Report when user click on Menu Item eg. Candidate Review Please help me to Learn more about iReport. Happy Programming..........
×
×
  • Create New...