0

我正在尝试获取 JRPrint 对象,所以这里是代码:

import java.io.File;

import net.sf.jasperreports.engine.*;

public class TestClass {
 protected static JasperPrint jasperPrint;
 static JasperReport jasperReport;
 protected static JasperReportsContext jasperReportsContext;

 public static void main(String[] args) {
String fileName = "/home/amira/Desktop/Map/testReports/test/textreport.jasper";
boolean isXMLFile = false;

if (!isXMLFile && fileName.endsWith(".jrxml"))
{
    isXMLFile = true;
}

try
{
  loadReportJrprint(fileName, isXMLFile, DefaultJasperReportsContext.getInstance());
}
catch (JRException e)
{

    System.err.println("Error viewing report design."+ e);

    System.exit(1);
}

try {
  JasperExportManager.exportReportToPdfFile(fileName);
} catch (JRException e) {
  // TODO Auto-generated catch block
  e.printStackTrace();
}

 }


protected static void loadReportJrprint(String fileName, boolean isXmlReport, JasperReportsContext jasperReportsContext) throws JRException
{
    if (isXmlReport)
    {
      jasperPrint = JRPrintXmlLoader.loadFromFile(jasperReportsContext, fileName);
      System.out.println(jasperPrint.getName());

    }
    else
    {
      jasperPrint = (JasperPrint)JRLoader.loadObjectFromFile(fileName);
    }

}
}

但我收到了这个错误:

Exception in thread "main" java.lang.ClassCastException: net.sf.jasperreports.engine.JasperReport cannot be cast to net.sf.jasperreports.engine.JasperPrint
at TestClass.loadReportJrprint(TestClass.java:80)
at TestClass.main(TestClass.java:50)
4

1 回答 1

3

.jasper文件只是一个已编译的文件.jrxml,因此您要检索的是一个JasperReport描述已编译模板的对象。要获取JasperPrint描述准备查看或导出的文档的对象,您必须首先使用其中一种JasperFillManager.fill方法填充报告。请参阅JasperFillManager 的 javadoc

于 2013-07-22T21:43:45.617 回答