zoukankan      html  css  js  c++  java
  • Cognos: get output of report

    Cognos:

    代码如下:

        public void queryReportVersions(String searchP, String reportName, String savePath)
        {
            PropEnum props[] =
            { PropEnum.defaultName, PropEnum.data, PropEnum.defaultName, PropEnum.format, PropEnum.burstKey };
    
            // Set the search path "searchP" to an existing report
            searchP += "/reportVersion//output";
            try
            {
                SearchPathMultipleObject spMulti = new SearchPathMultipleObject();
                spMulti.set_value(searchP);
                BaseClass bc[] = cmService.query(spMulti, props, new Sort[] {}, new QueryOptions());
    
                if (bc == null || bc.length <= 0)
                {
                    System.out.println("E: The Report " + searchP + " has no saved outputs.");
                    System.exit(1);
                }
                /*
                 * for each report output found, save the report to the local file system.
                 */
                for (int i = 0; i < bc.length; i++)
                {
                    Output o = (Output) bc[i];
                    String savedOutputName = o.getDefaultName().getValue();
    
                    String fileName = null;
                    if (o.getBurstKey().getValue() != null)
                        fileName = savePath + reportName + " - " + o.getBurstKey().getValue() + "[" + i + "]." + o.getFormat().getValue();
                    else
                        fileName = savePath + reportName +"_"+i + "." + o.getFormat().getValue();
    
                    File oFile = new File(fileName);
                    FileOutputStream fos = new FileOutputStream(oFile);
                    fos.write(o.getData().getValue());
                    fos.flush();
                    fos.close();
                    System.out.println("Report output: " + savedOutputName + " saved as " + fileName + " to local system.");
                }
            }
            catch (Exception e)
            {
                System.out.println(e);
            }
        }
    



  • 相关阅读:
    input 正则
    .net ashx Session 未将对象引用到实例
    js 时间和时间对比
    c# Repeater 和 AspNetPager
    c#后台 极光推送到Android 和IOS客户端
    select scope_identity()
    redhat7.4安装git(按照官网从源码安装)
    redhat7.4安装gitlab
    ES6模板字符串
    初次接触webpack
  • 原文地址:https://www.cnblogs.com/xue88ming/p/7182991.html
Copyright © 2011-2022 走看看