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

sumankumar_alla

Members
  • Posts

    11
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by sumankumar_alla

  1. i think you have to upgrade your commons_beanutils.jar file all the best Suman
  2. hi i also faced the problem before. we have to be take care while giving x,y,height and width for the elements. go through the below link. i hope it will be helpful. http://jasperforge.org/sf/wiki/do/viewPage/projects.jasperreports/wiki/FAQ all the best
  3. hi i also faced the problem before. we have to be take care while giving x,y,height and width for the elements. go through the below link. i hope it will be helpful. http://jasperforge.org/sf/wiki/do/viewPage/projects.jasperreports/wiki/FAQ all the best
  4. Hi all I want to restrict toolbar, menubar, edit, copy permissions for a pdf for this i have set the parameters like exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint); exporter.setParameter(JRExporterParameter.OUTPUT_STREAM,outputStream); exporter.setParameter(JRPdfExporterParameter.PERMISSIONS, PdfWriter.HideMenubar); exporter.setParameter(JRPdfExporterParameter.PERMISSIONS, PdfWriter.HideToolbar); exporter.setParameter(JRPdfExporterParameter.PERMISSIONS, PdfWriter.AllowCopy ); But still i am able to copy the text, use tool bar. please help me thanks suman kumar alla Post edited by: sumankumar_alla, at: 2006/12/23 04:01
  5. hi you can use JRBeanCollectionDataSource to pass arrayList of beans to ur report. JRBeanCollectionDataSource dataSource=new JRBeanCollectionDataSource(arraylist); and the field names in the report must be with the name of setter and getter methods in ur bean. it will work i am using it all the best
  6. hi thanks for your reply. when i give absolute path of the image it is working fine. but i have to get it from my web application context path. i am using jboss as my application server. i have given path of the image as url like. JRDesignImage image=new JRDesignImage(jasperDesign); image.setX(0); image.setY(10); image.setHeight(30); image.setWidth(200); expression = new JRDesignExpression(); expression.setValueClass(java.net.URL.class); expression.setText(""http://192.168.0.92:9999/ProcessTracker/view/images/logo11.gif""); image.setExpression(expression); band.addElement(image); but it is giving exception as 1. Cannot cast from String to URL value = (java.net.URL)("http://192.168.0.92:9999/ProcessTracker/view/images/lo go11.gif"); <--------------------------------------------------------------------- ---------> 2. Cannot cast from String to URL value = (java.net.URL)("http://192.168.0.92:9999/ProcessTracker/view/images/lo go11.gif"); <--------------------------------------------------------------------- ---------> 3. Cannot cast from String to URL value = (java.net.URL)("http://192.168.0.92:9999/ProcessTracker/view/images/lo go11.gif"); <--------------------------------------------------------------------- ---------> thanks
  7. Hi Thanks for your reply. I have succeeded in generating reports using java code. but now i have fallen in another problem is. i am passing image to jasper design object as JRDesignImage image=new JRDesignImage(jasperDesign); image.setX(0); image.setY(10); image.setHeight(30); image.setWidth(200); expression = new JRDesignExpression(); expression.setValueClass(String.class); expression.setText("C:/logo11.gif"); image.setExpression(expression); band.addElement(image); i have placed my image file as C:/logo11.gif but i am getting exception as 1. Syntax error on token ":", invalid AssignmentOperator value = (java.lang.String)(C:/logo11.gif); ^ 2. Syntax error on token ":", invalid AssignmentOperator value = (java.lang.String)(C://logo11.gif); ^ 3. Syntax error on token ":", invalid AssignmentOperator value = (java.lang.String)(C:/logo11.gif); Can any body give me the solution? Thanks
  8. Hi Thanks for your reply. I have understood your explanation. I think it is better to eliminate the .jrxml file for design. But I think it is very long process to design a report using a huge code. And I have studied api document of jasper report. If u doesn’t mind can u please explain me by a sample example? Thanks sumankumar
  9. Hi all. I am able to generate reports using ireports and jrxml's. It is going fine. In my requirement no of output fields will change dynamically according to the user requirement. I hope it is not possible to change fields dynamically. Is there is a solution for this issue. Thanks in advance. Sumankumar alla
  10. hi all this is suman. i am new to JasperIntelligence. i have downloaded "jasperintelligence-1.1.0-windows-oss-installer.exe" from sourcefroge and i tried to install it on my system. i have fallowed all the instructions given in installation guide. i have given all the mandatory fields in the installation process. but at the end while importing data i am getting an error and my installation process is getting terminated. error is: error running D:/Jasper~1.0/scripts/ji-import.bat--import-patch=ji-catlog--import=file=ji-catlog.xml--verbose: the input line is too long "ji-export-utilcpappend.bat" was unexpected at his time. the application will exit now any one please help me solving this issue thanks Post edited by: sumankumar_alla, at: 2006/12/13 06:13
  11. hi all. this is suman. i am new to jasper reports. i was succeeded in generating report using jrxml design file. but i am not able to get a perfect excel page. i think i is better to use jasper api for designing a report instead of using jrxml. but i am feeling tough by fallowing this process. can any body please help me in resolving this issue. if possible please explain with a sample example thanks in advance. sumankumar alla suman.alla@sevenhillssoft.com:cheer:
×
×
  • Create New...