"用 ReportUtils.read 读取了报表文件,遍历报表文件的每个单元格,怎么查看是头标题,报表头,分组表头。我要打印出来,求大佬支援"
用 ReportUtils.read 读取了报表文件,遍历报表文件的每个单元格,怎么查看是头标题,报表头,分组表头。我要打印出来,求大佬支援
ReportDefine rd=(ReportDefine) ReportUtils.read(“F:/test0104.rpx”);// 读取报表文件
int rowc=rd.getRowCount();
for(int kk=1;kk<=rowc;kk++) {
IRowCell irCell = (IRowCell) rd.getRowCell(kk);// 获取行首格
System.out.println(irCell.getRowType());
}
主要代码是这样,可以获取行首格,然后获取 type,输出的是个数值型,具体对应值可以在报表里看下:
收到收到,感谢
ReportDefine rd=(ReportDefine) ReportUtils.read(“F:/test0104.rpx”);// 读取报表文件
int rowc=rd.getRowCount();
for(int kk=1;kk<=rowc;kk++) {
IRowCell irCell = (IRowCell) rd.getRowCell(kk);// 获取行首格
System.out.println(irCell.getRowType());
}
主要代码是这样,可以获取行首格,然后获取 type,输出的是个数值型,具体对应值可以在报表里看下:
收到收到,感谢