如何将一个MemeryStream转换成FileStream?
发布网友
发布时间:2024-08-20 12:14
我来回答
共2个回答
热心网友
时间:2024-08-30 03:49
static public void Main(String []args)
{
string t="hello world";
MemoryStream m = new MemoryStream();
byte[] tb = Encoding.UTF8.GetBytes(t);
m.Write(tb,0,tb.Length);
Attachment at = new Attachment(m,"test.txt");
Console.ReadKey();
}
MemoryStream是完全可以添加到Attachment的。只要使用恰当。
不需要用FileStream。
热心网友
时间:2024-08-30 03:49
从MemeryStream中读出byte[]
再将byte[]写入到FileStream