可能重复:
从流中创建字节数组
我正在尝试在内存中创建文本文件并写入它byte[]
。我怎样才能做到这一点?
public byte[] GetBytes()
{
MemoryStream fs = new MemoryStream();
TextWriter tx = new StreamWriter(fs);
tx.WriteLine("1111");
tx.WriteLine("2222");
tx.WriteLine("3333");
tx.Flush();
fs.Flush();
byte[] bytes = new byte[fs.Length];
fs.Read(bytes,0,fs.Length);
return bytes;
}
但由于数据长度,它不起作用