润乾报表怎样用api实现合并单元格和设置对齐方式
背景说明
在应用中,有时我们需要api直接运算报表,在报表中做些修改;而合并单元格是经常遇到的操作;下面,我们对在api中怎么合并单元格以及单元格中的数据对齐方式的设置做下介绍。
应用举例
Jsp页面代码
<%@ page contentType=”text/html;charset=gb2312″ %>
<%@ page import=”java.io.*”%>
<%@ page import=”com.runqian.report4. *”%>
<%
//第一步,读取报表模板
InputStream fis=application.getResourceAsStream(“/reportFiles/juzhong.raq”);
ReportDefine rd = (ReportDefine)ReportUtils.read( fis );
//第二步,运算报表
Context context = new Context();
for(int i=2;i<=4;i++){
INormalCell IC_2_1 = rd.getCell(i, (short) 1);
IC_2_1.setValue(“NO-NO”);
IC_2_1.setHAlign(INormalCell.HALIGN_CENTER );//设置水平居中
IC_2_1.setVAlign(INormalCell.VALIGN_MIDDLE );//设置纵向居中
}
Area area_2_1=new Area(2,(short)1,4,(short)1); //构造一个合并区域
try {
ReportUtils.mergeReport(rd,area_2_1); //将报表模板依据合并区域的定义执行合并操作
} catch (Exception e1) {
}
Engine enging = new Engine( rd, context);
IReport iReport = enging.calc();
//第三步,展现报表
HtmlReport hReport = new HtmlReport( iReport,”report1″ );
out.print(hReport.generateHtml());
%>