码迷,mamicode.com
首页 > 其他好文 > 详细

使用XML Publisher导出PDF报表

时间:2015-08-25 13:51:51      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

生成XML数据源有两种方式。

一种是使用存储过程,返回一个clob作为xml数据源。

另一种是直接使用VO中的数据生成xml数据源。

方法一参考:

Oracle XML Publisher技巧集锦

OAF与XML Pulisher集成

 

方式二:

CO

if ( "PrintDis".equals(l_enent))
    {
      String DistributionId = pageContext.getParameter("DistributionId");
      parameters = new Serializable[] { DistributionId };
      XMLNode xmlNode = (XMLNode) am.invokeMethod("OnlyPrintDis", parameters);
      PrintDisPDF(pageContext, webBean, xmlNode, DistributionId);
    }

AM

public XMLNode OnlyPrintDis(String DistributionId) {
     ChgDisPrintTmpVOImpl vo = getChgDisPrintTmpVO1();
     vo.clearCache();
     vo.initQuery(keyId);
     vo.executeQuery();
     XMLNode xmlNode = 
         ((XMLNode)vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS));
     return xmlNode;
 }

 

使用XML Publisher导出PDF报表

标签:

原文地址:http://www.cnblogs.com/huanghongbo/p/4757031.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!