将 RTF 流转换为纯文本流
我有水晶报告,我需要将其转换为文本文件。 目前我只能将其转换为RTF流。 现在我需要将 RTF 流转换为文本流。 我正在使用 C#。
谢谢。
I have crystal report and I need to convert it to text file. Currently I can only convert it to RTF Stream. Now I need to convert the RTF Stream to Text Stream. I am using C#.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我错了,请纠正我,但您正在使用 ExportToStream 方法ExportFormatType.RichText:
这会将报表导出到 RTF 流中。 现在您希望将此流转换为纯文本(从 RTF 中提取文本)。 如果这是真的,那么此线程可能会给你答案。
Correct me if I am wrong but you are using the ExportToStream method with ExportFormatType.RichText:
This exports the report into an RTF stream. Now you wish to convert this stream to plain text (extract the text from the RTF). If that's true then this thread might have the answer for you.