gpt4 book ai didi

c# - 从 StreamWriter 输出 .txt 文件而不写入磁盘?

转载 作者:太空宇宙 更新时间:2023-11-03 17:47:38 25 4
gpt4 key购买 nike

有没有什么方法可以使用 StreamWriter 并将文件(在本例中为 .txt 文件)输出给用户,并且可以选择打开/保存而不将文件实际写入磁盘?不保存的话基本就没了。

我正在寻找与

相同的功能
HttpContext.Current.Response.TransmitFile(file);

但无需将任何内容保存到磁盘。谢谢!

最佳答案

试试 System.IO.MemoryStream

System.IO.MemoryStream ms = new System.IO.MemoryStream();
System.IO.StreamWriter sw = new System.IO.StreamWriter(ms);
sw.Write("hello");

关于c# - 从 StreamWriter 输出 .txt 文件而不写入磁盘?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/556441/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com