Cognos v11 SDK 导出为 pdf
Cognos v11 SDK export to pdf
有没有人有使用 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); 写出文件。那也不行。
替换
byte[] hunk_data = UTF8Encoding.UTF8.GetBytes(data);
有
byte[] hunk_data = Convert.FromBase64String(data);
有没有人有使用 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); 写出文件。那也不行。
替换
byte[] hunk_data = UTF8Encoding.UTF8.GetBytes(data);
有
byte[] hunk_data = Convert.FromBase64String(data);