微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 如何在代码中从.rdlc导出PDF时,如何提高LocalReport.Render方法的性能?

我想在代码级别渲染大型非图形化报告(数千页),省略从.rdlc文件中抓住浏览器的ReportViewer控件.当我测试呈现2000页的报表时,Microsoft.Reporting.WebForms.LocalReport.Render方法大约需要半小时才能完成,这被认为是糟糕的用户体验.

有没有任何技巧或替代解决方案来提高渲染的性能:在代码中,重新设计.rdlc文件或其他地方,例如只是增加硬件?

示例代码

LocalReport localReport = new LocalReport();
localReport.ReportPath = Server.MapPath("~/report.rdlc");

SetDataSources(ref localReport);

string reportType = "PDF";
string mimeType;
string encoding;
string fileNameExtension;

string deviceInfo =
"<DeviceInfo>" +
"  <OutputFormat>PDF</OutputFormat>" +
"  <PageWidth>8.5in</PageWidth>" +
"  <PageHeight>11in</PageHeight>" +
"  <MarginTop>0in</MarginTop>" +
"  <MarginLeft>0in</MarginLeft>" +
"  <MarginRight>0in</MarginRight>" +
"  <MarginBottom>0in</MarginBottom>" +
"</DeviceInfo>";
}

Warning[] warnings;
string[] streams;
byte[] renderedBytes;

//Render the report
renderedBytes = localReport.Render(
            reportType,deviceInfo,out mimeType,out encoding,out fileNameExtension,out streams,out warnings);

任何帮助非常感谢,谢谢提前!

解决方法

将datatable作为数据源返回的运行速度比对象列表快得多

原文地址:https://www.jb51.cc/csharp/94754.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐