How to use report.ExportToStream function in C#(如何在 C# 中使用 report.ExportToStream 函数)
问题描述
我目前正在使用 c#.我需要将报告文件转换为 pdf 格式并通过邮件发送.我编写了编码及其工作.我使用 rpt.ExportToDisk(ExportFormatType) 进行转换.但这需要很长时间.谁能建议我,如何使用 ExportToStream 功能,这样我就可以避免前者,因为我不希望将报告文件存储在我的磁盘中.这是我正在工作的代码
I'm currently working in c#. I need to convert report file to pdf format and send it through mail. I wrote coding and its working. I use rpt.ExportToDisk(ExportFormatType) for conversion. But it takes long time. Can anyone please suggest me, how to use ExportToStream function, so that i can avoid former one as i dont want the report file to be stored in my disk.
This is my code which is working
rep1.Load(Server.MapPath("CrystalReport_ModbusNode.rpt"));
rep1.ExportToDisk(ExportFormatType.PortableDocFormat,Server.MapPath("Modbus.pdf"));
我试过了:
rep1.ExportToStream(ExportFormatType.PortableDocFormat);
rep1.SaveAs(Server.MapPath("Modbus.pdf"));
但如果我使用这个,Modbus.pdf 仍然是 rpt 格式.ExportToStream id 没有做任何更改??如何发送邮件而不将其导出到我的磁盘.谁能帮我解决这个问题?提前致谢.
But if I use this, Modbus.pdf is still in rpt format.
ExportToStream id not doing any changes??
How can I send mail, without exporting it to my disk. Can anyone help me to solve this issue? Thanks in advance.
推荐答案
ExportToStream 函数返回一个Stream.然后,您可以使用此流写入文件.有关详细信息,请参阅此答案:如何将流保存到C# 中的文件?
The ExportToStream function returns a Stream. You can then use this stream to write a file. See this answer for details : How do I save a stream to a file in C#?
这篇关于如何在 C# 中使用 report.ExportToStream 函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C# 中使用 report.ExportToStream 函数
基础教程推荐
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
