在报表中设置的页眉页脚在页面中是看不到的,如下图:

页面中的效果:

在打印的时候,可以看到页眉页脚的效果:

那么,如果将页眉页脚导入到导出的excel中呢.我们可以通过API来进行设置:

<%@ pageimport="com.runqian.report4.model.*"%>

<%@ page import="com.runqian.report4.usermodel.*"%>

<%@ page import="com.runqian.report4.view.excel.*" %>

<%@ page import="com.runqian.report4.util.*" %>

<jsp:directive.pageimport="org.apache.poi2.hssf.usermodel.HSSFWorkbook"/>

<jsp:directive.pageimport="org.apache.poi2.hssf.usermodel.HSSFSheet"/>

<jsp:directive.page import="org.apache.poi2.hssf.usermodel.HSSFHeader"/>

<jsp:directive.pageimport="org.apache.poi2.hssf.usermodel.HSSFFooter"/>

<%

 //设置所有report对象的值为GBK转码

 request.setCharacterEncoding("GBK");

 

 String reportFile = request.getParameter("report");

 if( reportFile==null ){

  reportFile = "report_4.raq";

 }

 

 //第一步,读取报表模板

 InputStreamfis=application.getResourceAsStream("/reportFiles/"+reportFile);

 ReportDefine rd = (ReportDefine)ReportUtils.read( fis );

 

 //第二步,设置报表授权文件,运算报表

 Context context = new Context();

 //计算前,设置参数与宏

 ParamMetaData pmd = rd.getParamMetaData();

 String paramOrMocrName = "";

 if(pmd != null){

  for(int i = 0;i <pmd.getParamCount(); i ++){

   paramOrMocrName = pmd.getParam(i).getParamName();

   context.setParamValue(paramOrMocrName,request.getParameter(paramOrMocrName));

  }

 }

 MacroMetaData mmd = rd.getMacroMetaData();

 if( mmd != null ){

  for(int i = 0; i < mmd.getMacroCount(); i ++){

   paramOrMocrName = mmd.getMacro(i).getMacroName();

   context.setMacroValue(paramOrMocrName,request.getParameter(paramOrMocrName));

  }

 }

Engine enging = new Engine( rd, context);

 IReport iReport = enging.calc();

 

 //生成Excel文件,因为jsp里不能直接用response的out.print()方法,所以我们先在服务器上生成这个文件

   StringsaveFile=request.getRealPath("/reportFiles/")+"/"+reportFile+".xls";

  

   ExcelReport eReoprt = new ExcelReport();

   eReoprt.export(iReport);

 

   FileOutputStream fos = new FileOutputStream( saveFile );

    eReoprt.saveTo(fos);

   fos.close();

  

   HSSFWorkbook wb = new HSSFWorkbook(new FileInputStream(saveFile));

   wb.setSheetName(0,"表1");

   HSSFSheet  s=wb.getSheetAt(0);

   HSSFHeader hss = s.getHeader();

   //hss.setCenter("aaaa");

   StringBuffer stringBuffer = new StringBuffer();

   StringBuffer sb = new StringBuffer();

   int rowNum = iReport.getRowCount();

   int colNum = iReport.getColCount();

   sb.append("行数:"+rowNum+";列数:"+colNum);

  

   //部分(左中右),

   int centerStartCol =colNum/3+1;      //中间部分开始列

   int rightStartCol = colNum/3*2+colNum%3+1;   //右边部分开始列

   sb.append(";中间开始部分:"+centerStartCol+";右边开始部分:"+rightStartCol);

   //页眉左边部分

   

    for(int i=1,j=rowNum;i<=j;i++){

      IRowCell iRowCell=iReport.getRowCell(i);

    if( iRowCell.getRowType()==iRowCell.TYPE_PAGE_HEADER ){

     

      if(iRowCell.getRowVisible()!=false ){

       for(int m=1,n=centerStartCol;m<=n;m++){

        

        INormalCell cell =iReport.getCell(i,(short)m);

        sb.append(";左边部分:"+cell.isMerged());

        

        Object obj=cell.getValue();

        if(obj!=null){

        stringBuffer.append(obj.toString());

        HSSFHeader hh=s.getHeader();

        hh.setLeft(stringBuffer.toString());

       }

       }

       stringBuffer.append("\r");

      }

     }

    } 

  

  stringBuffer.delete(0,stringBuffer.length());

  //页眉中间部分

  System.out.println(sb.toString());

 

    for(int i=1,j=rowNum;i<=j;i++){

      IRowCell iRowCell=iReport.getRowCell(i);

    if( iRowCell.getRowType()==iRowCell.TYPE_PAGE_HEADER ){

     if(iRowCell.getRowVisible()!=false ){

      for(intm=rightStartCol,n=rightStartCol;m<=n;m++){

       

       INormalCell cell = iReport.getCell(i,(short)m);

       sb.append(";中间部分:"+cell.isMerged());

       

       Object obj=cell.getValue();

       if(obj!=null){

        stringBuffer.append(obj.toString());

       HSSFHeader hh=s.getHeader();

       hh.setCenter(stringBuffer.toString());

      }

      }

      stringBuffer.append("\r");

     }

    } 

   } 

 

  stringBuffer.delete(0,stringBuffer.length());

  System.out.println(sb.toString());

  //页眉右边部分

  

    for(int i=1,j=rowNum;i<=j;i++){

      IRowCell iRowCell=iReport.getRowCell(i);

    if( iRowCell.getRowType()==iRowCell.TYPE_PAGE_HEADER ){

     if(iRowCell.getRowVisible()!=false ){

      for(int m=centerStartCol,n=colNum;m<=n;m++){

       INormalCell cell =iReport.getCell(i,(short)m);

       sb.append(";右边部分:"+cell.isMerged());

       

       Object obj=cell.getValue();

       if(obj!=null){

        stringBuffer.append(obj.toString());

       HSSFHeader hh=s.getHeader();

       hh.setCenter(stringBuffer.toString());

      }

      }

      stringBuffer.append("\r");

     }

    } 

   }    

    for(int i=1,j=iReport.getColCount();i<=j;i++){

     IColCell irc=iReport.getColCell((short)i);

     

     if(irc.getBreakPage()){

     s.setColumnBreak((short)(i-1));

     }

    }

   //结束分页

   //页眉开始

  

   HSSFHeader hh=s.getHeader();

   System.out.println("日期&D:"+HSSFHeader.date());

   System.out.println("当前页&P:"+HSSFHeader.page());

   System.out.println("页数&N:"+HSSFHeader.numPages());

   System.out.println("时间&T:"+HSSFHeader.time());

   System.out.println("日期&D:"+HSSFHeader.date());

//页眉结束

   //设置页脚

   HSSFFooter footer = s.getFooter();

   footer.setCenter( "第 " + HSSFFooter.page() +"   
共 " + HSSFFooter.numPages());

   //页脚结束

   //标题行

  

    System.out.println("========="+stringBuffer);

    System.out.println("第一行第五列:"+iReport.getCell(1,(short)5).getValue().toString());

 //转跳到我们刚才生成的文件

 wb.write(new FileOutputStream(saveFile));

 System.out.println("Excel文件生成结束,文件保存在:"+saveFile);

 response.sendRedirect(request.getContextPath()+"/reportFiles/"+reportFile+".xls");

 for(int i=1;i<=iReport.getColCount();i++){

  System.out.println(iReport.getCell(1,(short)i).getValue());

 }

%>

如何利用API导出带有页眉页脚的excel的更多相关文章

  1. iText + Freemarker实现pdf的导出,支持中文、css以及图片,页眉页脚,页眉添加图片

    本文为了记录自己的实现过程,具体的实现步骤是参考博文 https://www.cnblogs.com/youzhibing/p/7692366.html 来实现的,只是在他的基础上添加了页眉页脚及页眉 ...

  2. itext 生成pdf文件添加页眉页脚

    原文来自:https://www.cnblogs.com/joann/p/5511905.html 我只是记录所有jar版本,由于版本冲突及不兼容很让人头疼的,一共需要5个jar, 其中itextpd ...

  3. LaTeX 页眉页脚的设置

    Latex中页眉页脚的设置 1. 首先要加页眉页脚的话,需要启动宏: 我通常用fancyhdr宏包来设置页眉和页脚. \usepackage{fancyhdr} 我们在 LaTeX 中先把 page ...

  4. 【Itext】7步制作Itext5页眉页脚pdf实现第几页共几页

    itext5页眉页脚工具类,实现page x of y 完美兼容各种格式大小文档A4/B5/B3,兼容各种文档格式自动计算页脚XY轴坐标 鉴于没人做的这么细致,自己就写了一个itext5页眉页脚工具类 ...

  5. 在C#中实现Word页眉页脚的全部功能

    页眉页脚经常使用于文章排版,在Word工具栏里.我们能够加入页眉,页脚,页码,日期和时间.图片等信息和内容.页眉/页脚有两个额外选项:首页不同,奇偶页不同.有时在不同的节(section)里插入不同的 ...

  6. 关于JavaScript打印去掉页眉页脚

    因为这个问题,Google和百度都查了个遍,网上主要解决方案都是这一个代码: <script language="JavaScript"> var hkey_root, ...

  7. 使用C#在word中插入页眉页脚

    //插入页脚 public void InsertFooter(string footer) { if (ActiveWindow.ActivePane.View.Type == WdViewType ...

  8. 【itext】7步制作兼容各种文档格式的Itext5页眉页脚 实现page x pf y

    itext5页眉页脚工具类,实现page x of y 完美兼容各种格式大小文档A4/B5/B3,兼容各种文档格式自动计算页脚XY轴坐标 鉴于没人做的这么细致,自己就写了一个itext5页眉页脚工具类 ...

  9. C#word(2007)操作类--新建文档、添加页眉页脚、设置格式、添加文本和超链接、添加图片、表格处理、文档格式转化

    转:http://www.cnblogs.com/lantionzy/archive/2009/10/23/1588511.html 1.新建Word文档 #region 新建Word文档/// &l ...

随机推荐

  1. POJ 2260

    #include <iostream> #define MAXN 100 using namespace std; int _m[MAXN][MAXN]; int main() { //f ...

  2. Seqlist L 与 Seqlist *L的区别

     Seqlist L结构体变量,SeqlistInsert之后不可以带回新的插入数据.  Seqlist *L 是传结构体指针 用SeqlistInsert之后可以有新的插入.

  3. Opserver 初探三《服务器数据监控》

    用Opserver 怎么像zabbix一样监控服务器呢,查看github官方说明,Opserver可用于连接任何支持Bosun, Orion, or direct WMI监控数据. Opserver ...

  4. 网络游戏程序员须知 UDP vs TCP(转)

    本文为作者原创或翻译,转载请注明,不得用于商业用途. 作者:rellikt@gmail.com 首发链接:http://blog.csdn.net/rellikt/archive/2010/08/21 ...

  5. HUE配置文件hue.ini 的yarn_clusters模块详解(图文详解)(分HA集群和非HA集群)

    不多说,直接上干货! 我的集群机器情况是 bigdatamaster(192.168.80.10).bigdataslave1(192.168.80.11)和bigdataslave2(192.168 ...

  6. invokespecial与invokevirtual指令的区别

    package com.test19; class Father { public void publicMethod() { privateMethod(); // this是Son对象,调用Fat ...

  7. MYSQL 复制详解

    MySql 复制介绍 MySQL复制允许将主实例(master)上的数据同步到一个或多个从实例(slave)上,默认情况 下复制是异步进行的,从库也不需要一直连接到主库来同步数据 MySQL复制的数据 ...

  8. Chapter 3 Phenomenon——18

    My intuition flickered; the doctor was in on it. 我的直觉告诉我:这个医生也参与了. 我灵光一闪:这医生熟悉内情. "I'm afraid t ...

  9. Java SPI机制和使用示例

    JAVA SPI 简介 SPI 是 Java 提供的一种服务加载方式,全名为 Service Provider Interface.根据 Java 的 SPI 规范,我们可以定义一个服务接口,具体的实 ...

  10. python迭代器、生成器、装饰器

    1 迭代器 这里我们先来回顾一下什么是可迭代对象(Iterable)? 可以直接作用于for循环的对象统称为可迭代对象,即Iterable. # 一是集合数据类型,如list.tuple.dict.s ...