如何将字符串加载到 FileStream 中而不访问磁盘?

发布于 2024-12-27 14:54:02 字数 159 浏览 0 评论 0原文

string abc = "This is a string";

如何将 abc 加载到 FileStream 中?

FileStream input = new FileStream(.....);
string abc = "This is a string";

How do I load abc into a FileStream?

FileStream input = new FileStream(.....);

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

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

发布评论

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

评论(1

贪恋 2025-01-03 14:54:02

使用 MemoryStream 代替...

MemoryStream ms = new MemoryStream(System.Text.Encoding.ASCII.GetBytes(abc));

记住 MemoryStream (就像 FileStream 一样)完成后需要关闭。您始终可以将代码放在 using 块中,以使其更容易...

using(MemoryStream ms = new MemoryStream(System.Text.Encoding.ASCII.GetBytes(abc)))
{
   //use the stream here and don't worry about needing to close it
}

注意:如果您的字符串是 Unicode 而不是 ASCII,您可能需要在转换为 Byte 数组时指定这一点。基本上,一个 Unicode 字符占用 2 个字节而不是 1 个字节。如果需要,将添加填充(例如,unicode 中的 0x00 0x61 = "a",而 ASCII 中的 0x61 = “一个”)

Use a MemoryStream instead...

MemoryStream ms = new MemoryStream(System.Text.Encoding.ASCII.GetBytes(abc));

remember a MemoryStream (just like a FileStream) needs to be closed when you have finished with it. You can always place your code in a using block to make this easier...

using(MemoryStream ms = new MemoryStream(System.Text.Encoding.ASCII.GetBytes(abc)))
{
   //use the stream here and don't worry about needing to close it
}

NOTE: If your string is Unicode rather than ASCII you may want to specify this when converting to a Byte array. Basically, a Unicode character takes up 2 bytes instead of 1. Padding will be added if needed (e.g. 0x00 0x61 = "a" in unicode, where as in ASCII 0x61 = "a")

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