我尝试将json格式的数据作为字符串检索并将其写入文件,并且效果很好。现在我正在尝试使用MemoryStream来做同样的事情,但没有任何东西被写入文件 - 只是[{},{},{},{},{}]而没有任何实际数据。
我的问题是 - 如何检查数据是否确实正确地传输到内存流,或者问题是否发生在其他地方。我知道myList确实包含数据。
这是我的代码:
MemoryStream ms = new MemoryStream();
DataContractJsonSerializer dcjs = new DataContractJsonSerializer(typeof(List<myClass>));
dcjs.WriteObject(ms, myList);
using (FileStream fs = new FileStream(Path.Combine(Application.StartupPath,"MyFile.json"), FileMode.OpenOrCreate))
{
ms.Position = 0;
ms.Read(ms.ToArray(), 0, (int)ms.Length);
fs.Write(ms.ToArray(), 0, ms.ToArray().Length);
ms.Close();
fs.Flush();
fs.Close();
}
答案 0 :(得分:17)
有一种非常方便的方法,Stream.CopyTo(Stream)
。
using (MemoryStream ms = new MemoryStream())
{
StreamWriter writer = new StreamWriter(ms);
writer.WriteLine("asdasdasasdfasdasd");
writer.Flush();
//You have to rewind the MemoryStream before copying
ms.Seek(0, SeekOrigin.Begin);
using (FileStream fs = new FileStream("output.txt", FileMode.OpenOrCreate))
{
ms.CopyTo(fs);
fs.Flush();
}
}
此外,您不必关闭fs
,因为它在使用声明中,并将在最后处理。
答案 1 :(得分:1)
问题与文件流/内存流无关。问题是DataContractJsonSerializer
是一个OPT IN Serializer。您需要将[DataMemberAttribute]
添加到myClass
上序列化所需的所有属性。
[DataContract]
public class myClass
{
[DataMember]
public string Foo { get; set; }
}
答案 2 :(得分:0)
这一行看起来有问题:
ms.Read(ms.ToArray(), 0, (int)ms.Length);
此时您不需要在内存流中读取任何内容,特别是当您编写代码以将ms读取为ms时。
我非常有信心只需删除此行即可解决您的问题。
答案 3 :(得分:0)
//重置流的位置
ms.Position = 0;
//然后复制到文件流
ms.CopyTo(fileStream);
答案 4 :(得分:0)
using (var memoryStream = new MemoryStream())
{
...
var fileName = $"FileName.xlsx";
string tempFilePath = Path.Combine(Path.GetTempPath() + fileName );
using (var fs = new FileStream(tempFilePath, FileMode.Create, FileAccess.Write))
{
memoryStream.WriteTo(fs);
}
}