Cognos v11 SDK导出为pdf

时间:2018-09-14 16:04:13

标签: c# pdf cognos

有没有人举一个使用sdk生成PDF格式报告的示例? SDK.pdf仅包含html示例。我不知道。我正在使用c#控制器调用cognos来生成报告。

runOptionStringArray的值必须为PDF。

outputFormat.value = new string[] { "PDF" };

在数据我回来从调用看起来是这样的:“JVBERi0xLjQKJeLjz9MNCjQgMCBvYmoKPDwvTGluZWFyaXplZCAxL0wgICAgIDExOTEyOC9IWyAgICAgICA1ODggICAgICAgIDE2MV0vTyA2L0UgICAgIDExODAzMi9OIDEvVCAgICAgMTE5MDAyPj4KZW5kb2JqCnhyZWYNCjQgMTUNCjAwMDAwMDAwMTYgMDAwMDAgbg0KMDAwMDAwMDc0OSAwMDAwMCBuDQowM”

我已经尝试过了,但是它仍然不能呈现为pdf。

asynchReply res = cBIRS.run( reportPath, parameters, runOptions );
// The report is finished, let's fetch the results and save them to a file.
string data = null;
if( res.status == asynchReplyStatusEnum.complete )
{
    for (int i = 0; i < res.details.Length; i++)
    {
        if (res.details[i] is asynchDetailReportOutput)
        {
            data = ( (asynchDetailReportOutput)res.details[i]).outputPages[0];
        }
    }
    FileStream fs = new FileStream(outputPath, FileMode.Create);
    byte[] hunk_data = UTF8Encoding.UTF8.GetBytes(data);
    fs.Write(hunk_data, 0, hunk_data.Length);
    fs.Close();
}

最后pdf确实有数据,但是Adobe无法打开它。

PS。我还尝试不使用UTF8Encoding.UTF8.GetBytes而是仅使用System.IO.File.WriteAllText(outputPath,data)来写出文件;那也不行。

1 个答案:

答案 0 :(得分:1)

替换

 byte[] hunk_data = UTF8Encoding.UTF8.GetBytes(data);

使用

 byte[] hunk_data = Convert.FromBase64String(data);