是否可以流式传输到文本框或类似的控制对象?

发布于 2024-11-30 07:05:08 字数 197 浏览 0 评论 0原文

我目前有一个导出到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨落成白 2024-12-07 07:05:08

流式传输到 MemoryStream 然后通过 Encoding 转换为字符串怎么样?

What about streaming to a MemoryStream and then converting to string through Encoding?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文