是否可以流式传输到文本框或类似的控制对象?
我目前有一个导出到 xml 的函数,可以流式传输到一个新文件。
我想要做的是创建一个文件预览框,以便用户可以决定是否想要/需要导出。
这些文件平均约为 200,000 行,因此我不能只是 += 或 string 将它们构建在一起,我需要将数据流式传输到控件中。
是否可以将数据从数据库流式传输到 TextBox 或类似的文本控件中?
I currently have an export to xml function that streams to a new file.
What i want to be able to do is create a file preview box so that a user can decide if they want / need to export or not.
The files are on average around 200,000 lines so i cannot just += or stringbuild them together, im gonna need to stream the data into a control.
Is it possible to stream data from a database into a TextBox or similar text control?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
流式传输到 MemoryStream 然后通过 Encoding 转换为字符串怎么样?
What about streaming to a MemoryStream and then converting to string through Encoding?