バイナリ ファイルからの逆シリアル化構造体に問題があります。私の構造体には、プロパティとして別の構造体があります。
[Serializable()]
public struct Record : ISerializable
{
public SensorInfo SensorInfo;
public List<short[]> Frames;
public Record(SerializationInfo info, StreamingContext ctxt)
{
this.Frames = (List<short[]>)info.GetValue("Frames", typeof(List<short[]>));
this.SensorInfo = (SensorInfo)info.GetValue("SensorInfo", typeof(SensorInfo));
}
public void GetObjectData(SerializationInfo info, StreamingContext ctxt)
{
info.AddValue("Frames", this.Frames);
info.AddValue("SensorInfo", this.SensorInfo);
}
}
SensorInfo 構造体:
[Serializable]
public struct SensorInfo : ISerializable
{
public double Frequency;
public int FramePixelDataLength;
public int FrameWidth;
public int FrameHeight;
public SensorInfo(SerializationInfo info, StreamingContext ctxt)
{
this.Frequency = (double)info.GetValue("Frequency", typeof(double));
this.FramePixelDataLength = (int)info.GetValue("FramePixelDataLength", typeof(int));
this.FrameWidth = (int)info.GetValue("FrameWidth", typeof(int));
this.FrameHeight = (int)info.GetValue("FrameHeight", typeof(int));
}
public void GetObjectData(SerializationInfo info, StreamingContext ctxt)
{
info.AddValue("Frequency ", this.Frequency);
info.AddValue("FramePixelDataLength ", this.FramePixelDataLength);
info.AddValue("FrameWidth", this.FrameWidth);
info.AddValue("FrameHeight", this.FrameHeight);
}
}
私はこのコードでシリアライザを使用しています:
static public class RecordSerializer
{
static RecordSerializer()
{
}
public static void SerializeRecord(string filename, Record recordToSerialize)
{
Stream stream = File.Open(filename, FileMode.Create);
BinaryFormatter bFormatter = new BinaryFormatter();
bFormatter.Serialize(stream, recordToSerialize);
stream.Close();
}
public static Record DeSerializeRecord(string filename)
{
Record recordToSerialize;
Stream stream = File.Open(filename, FileMode.Open);
BinaryFormatter bFormatter = new BinaryFormatter();
bFormatter.AssemblyFormat = System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple;
recordToSerialize = (Record)bFormatter.Deserialize(stream);
stream.Close();
return recordToSerialize;
}
}
シリアル化は正常に機能し、出力ファイルを取得します。しかし、逆シリアル化しようとすると、bFormatter.Deserialize から例外のみが発生し、逆シリアル化は失敗します。
Frequency not found.
ストリームが空ではありません。これを確認しました。
アイデアをありがとう。