解决办法有两种:
第一:做一个Excel模板,然后把数据取到要显示的数据取到 excel 中,这种方法比较通用。但不容易实现。
第二:用代码实现
     String [] rowTitles = new String [] {"已报警事项","已处理事项","未处理事项","笔数","金额","笔数","金额","笔数","金额"};
String [] properties =  new String [] {"orgName","sum","money","dealSum",
"dealMoney","unDealSum","unDealMoney"};
List dataList = this.voList;
String title = "标题";
ByteArrayOutputStream os = reportService.createExcelReportForQuery(title,rowTitles,properties,dataList);
try {
this.downLoadFile(os,"标题.xls","application/vnd.ms-excel");
} finally {
if(os != null) {
os.close();
os = null;
}
}