欢迎来到天天文库
浏览记录
ID:33425501
大小:1.63 MB
页数:12页
时间:2019-02-25
《jaspersoft使用文档》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、Jaspersoft使用文档1:安装jaspersoft.不做介绍。2:创建文件。打开菜单:文件—>new…选择BlankA4,点击LaunchReportWizard按钮确定.点击下一步后面连续点击”下一步”,完成文件的创建。一般情况下,只留Detail1模块即可,其它都可删除。特殊标签可能用到PageHeader和pageFooter删除之后,如下图所示,并且在属性栏设置文件的高、宽。然后根据开始你的标签布局设计模版:(注意,所有的字体显示,要选择上图那3个属性值,否则会出现乱码)(默认打印出来是不会显示边框的,选中Rectangle标签,右击—>PaddingandBroders
2、)预览成功之后会生成一个.jaspersoft文件,用来java代码解析使用.Java代码调用jaspersoft1):导入jarjasperreportsjasperreports5.6.0jasperreports2):把要打印的模版存到对应的项目目录下3):模版里面没有sql版本事例:publicvoidprintNewExpress(HttpServlet
3、Requestrequest,Stringno,HttpServletResponseresponse)throwsJRException,InstantiationException,IllegalAccessException,IOException{CollectionstoresQualitys=newArrayList();Listpick=pickService.printExpressSingle(no);for(Pickdetail:pick){StringcustomerCode=detail.getCustomerCode
4、();StringcustomerCompany=detail.getCustomerCompany();StringcustomerMobile=detail.getCustomerMobile();StringcustomerAddress=detail.getCustomerAddress();StringcustomerZipcode=detail.getCustomerZipcode();StringcustomerLocation=detail.getCustomerLocation();StringclassPath=Thread.currentThread().getC
5、ontextClassLoader().getResource("").getPath();StringtemplatePath="";ResourcePatternResolverresolver=newPathMatchingResourcePatternResolver();Resourcehead=resolver.getResource("classpath:/com/iceasy/wms/console/controller/xls/template/printCarrierReport_Fed.jasper");templatePath=head.getFile().ge
6、tAbsolutePath();//封装报表参数HashMapparams=newHashMap();//获取报表模板StringfileURL="com"+System.getProperty("file.separator")+"iceasy"+System.getProperty("file.separator")+"wms"+System.getProperty("file.separator")+"console"+System.getProperty("file.separator")+"controller"+S
7、ystem.getProperty("file.separator")+"xls"+System.getProperty("file.separator")+"template"+System.getProperty("file.separator");StringtemplatePathImages=classPath+fileURL+"checkbox_cheked.png";params.put("image_url",templateP
此文档下载收益归作者所有