如何获取 stringbuilder 并将其转换为streamReader?
如何获取字符串生成器并将其转换为流?
所以我的字符串生成器必须转换为:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 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.
如果需要使用 StreamReader ,则将字符串转换为内存流,然后使用该对象创建一个新的 StreamReader:
If using a
StreamReader
is a requirement then convert the string to a memory stream and then create a new StreamReader using that object: