当我在ireport中运行report时,我得到了正确的输出。但是当我通过java代码编译jrml文件时,我会得到如下错误
org.xml.sax.SAXParseException;行号:63;列号:38;CVC-complex-type.2.4.d:发现以元素“parague”开头的内容无效。此时不需要子元素。
public byte[] generate(String path,String fileName,String type,String query,HashMap<String,Object> param){
byte[] output=null;
Connection con=JdbcUtil.getJdbcConnection();
JasperDesign jasperDesign=null;
JasperReport jasperReport=null;
System.out.println("Exec RT");
try{
jasperDesign = JRXmlLoader.load(path+"\\"+fileName);
}catch(Exception e1){System.out.println("t0:"+e1.getMessage());
System.out.println("RTMap:"+param);
try{
JRDesignQuery nQuery=new JRDesignQuery();
nQuery.setText(query);
jasperDesign.setQuery(nQuery);
}catch(Exception e){System.out.println("t1:"+e.getMessage());}
System.out.println("Compiling Report Designs");
try{
jasperReport = JasperCompileManager.compileReport(path+"\\"+fileName);
}catch(Exception e5){}
JasperPrint jasperPrint=null;
try{
jasperPrint = JasperFillManager.fillReport(jasperReport, param, con);
}catch(Exception e){System.out.println("RT0:"+e.getMessage());}
String fName=fileName.substring(0,fileName.indexOf("."));
JRExporter exporter= null;
try{
if(type.equalsIgnoreCase("pdf")){
output=JasperExportManager.exportReportToPdf(jasperPrint);
}else if(type.equalsIgnoreCase("html")){
exporter = new JRHtmlExporter();
}else if(type.equalsIgnoreCase("rtf")){
exporter=new JRRtfExporter();
}else if(type.equalsIgnoreCase("xls")){
exporter = new JRXlsExporter();
}else if(type.equalsIgnoreCase("csv")){
exporter=new JRCsvExporter();
}
output = exportReportToBytes(jasperPrint, exporter);
}catch(Exception er){System.out.println("RT2:"+er.getMessage());
}
}
return output;
}
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="offerLetter" language="groovy" pageWidth="595" pageHeight="1417" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">
<style name="table">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 1">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table 1_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 1_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 1_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 2">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table 2_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 2_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 2_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 3">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table 3_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 3_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 3_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 4">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table 4_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 4_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 4_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 5">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table 5_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 5_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 5_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 6">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table 6_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 6_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 6_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 7">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table 7_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 7_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table 7_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<parameter name="appid" class="java.lang.Integer">
<defaultValueExpression><![CDATA[]]></defaultValueExpression>
</parameter>
<parameter name="logopath" class="java.lang.String"/>
<parameter name="SUBREPORT_DIR" class="java.lang.String"/>
<queryString>
<![CDATA[SELECT offer.INT_OFFERID,ecat.CHR_CATEGORYNAME,CONCAT(year(CURRENT_TIMESTAMP),CONCAT('-',year(CURRENT_TIMESTAMP)+1)) ayear,
DATE_FORMAT(CURRENT_DATE,'%d-%b-%y'),
CONCAT( if(app.CHR_GENDER='Male','Mr. ', if(app.CHR_MARITALSTATUS ='M','Mrs.' ,'Ms.') ),' ',app.CHR_APPNAME) salute,office.CHR_OFFICENAME,desig.CHR_DESIGNAME,
DATE_ADD(CURDATE(),INTERVAL 3 DAY) joining,
FUN_GET_takehome(hal.INT_APPID) takehome
FROM
hrm_t_allowance hal,hrm_m_application app,hrm_t_offerletter offer,com_m_office office,com_m_desig desig,com_m_employeecategory ecat
WHERE hal.INT_APPID=offer.INT_APPID AND app.INT_APPID=offer.INT_APPID AND offer.INT_DESIGID=desig.INT_DESIGID AND
offer.INT_OFFICEID=office.INT_OFFICEID AND hal.INT_APPID=$P{appid}
AND ecat.INT_EMPLOYEECATEGORYID=offer.INT_CATEGORY;]]>
</queryString>
<field name="INT_OFFERID" class="java.lang.Integer"/>
<field name="CHR_CATEGORYNAME" class="java.lang.String"/>
<field name="ayear" class="java.lang.String"/>
<field name="DATE_FORMAT(CURRENT_DATE,'%d-%b-%y')" class="java.lang.String"/>
<field name="salute" class="java.lang.String"/>
<field name="CHR_OFFICENAME" class="java.lang.String"/>
<field name="CHR_DESIGNAME" class="java.lang.String"/>
<field name="joining" class="java.sql.Date"/>
<field name="takehome" class="java.lang.Integer"/>
<background>
<band splitType="Stretch"/>
</background>
<title>
<band height="84" splitType="Stretch">
<image>
<reportElement x="171" y="-1" width="360" height="58"/>
<imageExpression class="java.lang.String"><![CDATA[$P{logopath}]]></imageExpression>
</image>
<staticText>
<reportElement x="218" y="57" width="128" height="27"/>
<textElement>
<font size="12" isBold="true"/>
</textElement>
<text><![CDATA[OFFER LETTER]]></text>
</staticText>
</band>
</title>
<summary>
<band height="203" splitType="Stretch">
<textField>
<reportElement x="12" y="0" width="543" height="14"/>
<box leftPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Top" markup="html">
<font fontName="Times New Roman" size="10"/>
<paragraph lineSpacing="1_1_2"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA["CARE/OFFER-"+$F{INT_OFFERID}+"/"+$F{CHR_CATEGORYNAME}+"/"+$F{ayear}+"."]]></textFieldExpression>
</textField>
<textField>
<reportElement x="12" y="14" width="100" height="14"/>
<textElement/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{DATE_FORMAT(CURRENT_DATE,'%d-%b-%y')}]]></textFieldExpression>
</textField>
<staticText>
<reportElement x="12" y="38" width="57" height="15"/>
<textElement>
<font isBold="false"/>
</textElement>
<text><![CDATA[To,]]></text>
</staticText>
<textField>
<reportElement x="12" y="53" width="100" height="15"/>
<textElement/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{salute}]]></textFieldExpression>
</textField>
<textField>
<reportElement x="12" y="68" width="206" height="13"/>
<textElement/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{CHR_OFFICENAME}+","]]></textFieldExpression>
</textField>
<textField>
<reportElement x="12" y="98" width="543" height="14"/>
<box leftPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Top" markup="html">
<font fontName="Times New Roman" size="10"/>
<paragraph lineSpacing="1_1_2"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA["Dear."+$F{salute}+","]]></textFieldExpression>
</textField>
<textField>
<reportElement x="12" y="112" width="543" height="16"/>
<box leftPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Top" markup="html">
<font fontName="Times New Roman" size="10"/>
<paragraph lineSpacing="1_1_2"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA["We are pleased to offer the post of "+" \""+$F{CHR_DESIGNAME}+" \" "+" in our organisation at "+"\""+$F{CHR_OFFICENAME}+"\""+"."]]></textFieldExpression>
</textField>
<textField>
<reportElement x="12" y="128" width="543" height="12"/>
<box leftPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Top" markup="html">
<font fontName="Times New Roman" size="10"/>
<paragraph lineSpacing="1_1_2"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA["You are expected to join us on or before "+$F{joining}+" failing with this offer is not valid. Your salary details as mentioned bellow "]]></textFieldExpression>
</textField>
<subreport>
<reportElement positionType="Float" x="12" y="140" width="41" height="38"/>
<subreportParameter name="SUBREPORT_DIR">
<subreportParameterExpression><![CDATA[$P{SUBREPORT_DIR}]]></subreportParameterExpression>
</subreportParameter>
<subreportParameter name="appid">
<subreportParameterExpression><![CDATA[$P{appid}]]></subreportParameterExpression>
</subreportParameter>
<subreportParameter name="logopath">
<subreportParameterExpression><![CDATA[$P{logopath}]]></subreportParameterExpression>
</subreportParameter>
<connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
<subreportExpression class="java.lang.String"><![CDATA[$P{SUBREPORT_DIR} + "offerLetter_subreport1.jasper"]]></subreportExpression>
</subreport>
</band>
</summary>
</jasperReport>
我通过从项目中删除重复的jasperreport jar文件获得了结果
我刚开始使用spring,我现在正在使用Spring4 一旦将war部署到JCS-SaaS(云)中,我将得到以下错误: org.springframework.beans.factory.XML.xmlBeanDefinitionStoreException:类路径资源[pepsiservlet-context.XML]的XML文档中的第33行无效;嵌套异常是org.xml.sax.SAXPars
在eclipse中编辑applicationContext.xml时,下面的内容 引发错误: 我在谷歌上搜索了错误,有些地方说订单很重要…我尝试在bean中重新排列项,但错误仍然存在。 怎么啦?
我有一个XML文件需要用XSD文件验证,但是当我想用XSD文件验证我XML时却出现了这个错误 CVC-Complex-Type2.4.a:发现以元素“ClientData”开头的内容无效。应为“”之一。行“2”,列“27”。 这是我的XML文件 我不知道是什么问题...你能告诉我是什么问题吗?
需要“{”http://www.springframework.org/schema/beans“:meta,”h ttp://www.springframework.org/schema/beans“:constructor-arg,”http://www.springframework.org/schema/beans“:property,”http://www.springframework
我正在使用eclipse版本:NEON.3发行版(4.6.3)和Tomcat(V8.5)来进行Java(JDK1.8)编程。 我试图解决的问题 下面是web.xml中的代码 错误显示在前面的标记上。 我可以做什么来解决eclipse错误?
问题内容: 我正在使用springs源工具套件。我在weblogic.xml文件中遇到错误- 我的weblogic.xml看起来像这样 错误显示在标签的开头。 问题答案: 将名称空间更改为上述名称空间。