如何获取 stringbuilder 并将其转换为streamReader?

发布于 2024-08-22 12:11:05 字数 284 浏览 6 评论 0原文

如何获取字符串生成器并将其转换为流?

所以我的字符串生成器必须转换为:

StreamReader stream = ????

更新

我尝试使用像这样的字符串读取器:

StringReader sr = new StringReader(sb.ToString());
StreamReader stream = new StreamReader(sr);

但这不起作用?

How to take a stringbuilder and convert it to a stream?

SO my stringbuilder has to be converted into a :

StreamReader stream = ????

Update

I tried using a stringreader like:

StringReader sr = new StringReader(sb.ToString());
StreamReader stream = new StreamReader(sr);

but that doesn't work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

黎歌 2024-08-29 12:11:05

使用 ToString 将 StringBuilder 转换为 String,并使用 StringReader 将 String 包装为 Stream。

Use ToString to convert the StringBuilder into a String, and use a StringReader to wrap the String as a Stream.

南街女流氓 2024-08-29 12:11:05

如果需要使用 StreamReader ,则将字符串转换为内存流,然后使用该对象创建一个新的 StreamReader:

StreamReader reader= new StreamReader(
                new MemoryStream(Encoding.ASCII.GetBytes(sb.ToString())));

If using a StreamReader is a requirement then convert the string to a memory stream and then create a new StreamReader using that object:

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