我正在尝试为我实现 excel 导出,这导致错误以下是我尝试过的方式
<h:form id="excelExport">
<a4j:outputPanel id="matched">
<h:panelGrid width="100%" border="1">
<rich:dataTable id="tblMatched" value="#{SampleBean.exportDataList}" var="iList" bgcolor="#ffffff" border="1" cellpadding="4" cellspacing="3" rows="10" width="100%" dir="LTR" frame="hsides" rules="all" >
<h:column>
<f:facet name="header">
<h:outputText style="" value="Feed Id" />
</f:facet>
<h:outputText value="#{iList.feedId}" > </h:outputText>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText style="" value="Data Source Name" />
</f:facet>
<h:outputText value="#{iList.sourceName}" > </h:outputText>
</h:column>
</rich:dataTable>
<h:commandLink value="Export table" action="#{org.jboss.seam.excel.excelExporter.export('excelExport:tblMatched')}" />
</h:panelGrid>
</a4j:outputPanel>
</h:form>
当我单击链接时,出现以下错误
严重:javax.el.PropertyNotFoundException:/SampleExport.xhtml @76,139 action="#{org.jboss.seam.excel.excelExporter.export('excelExport:tblMatched')}":目标无法到达,标识符 'org' 解析为 null javax.faces.el.EvaluationException: javax.el.PropertyNotFoundException: /SampleExport.xhtml @76,139 action="#{org.jboss.seam.excel.excelExporter.export('excelExport:tblMatched')}":目标不可达,标识符'org' 解析为 null
我用过 jboss-seam-excel.jar 和 jxl.jar
有什么建议可以解决我的问题...????