私は、Dataacontractserializerを使用してオブジェクトをファイルに戻しておくと、新しいxmlの長さがファイルに元々存在していたxmlよりも短い場合、元のxml outwith新しいxmlの長さは、ファイルに残り、xmlを壊すことになります。Datacontractserializerはすべてのデータを上書きしません
これを解決するには誰も良い解決策を持っていますか?私は、これはFileMode.OpenOrCreate
を使用してによるものであると考えてい
/// <summary>
/// Flushes the current instance of the given type to the datastore.
/// </summary>
private void Flush()
{
try
{
string directory = Path.GetDirectoryName(this.fileName);
if (!Directory.Exists(directory))
{
Directory.CreateDirectory(directory);
}
FileStream stream = null;
try
{
stream = new FileStream(this.fileName, FileMode.OpenOrCreate);
for (int i = 0; i < 3; i++)
{
try
{
using (XmlDictionaryWriter writer = XmlDictionaryWriter.CreateTextWriter(stream, new System.Text.UTF8Encoding(false)))
{
stream = null;
// The serializer is initialized upstream.
this.serializer.WriteObject(writer, this.objectValue);
}
break;
}
catch (IOException)
{
Thread.Sleep(200);
}
}
}
finally
{
if (stream != null)
{
stream.Dispose();
}
}
}
catch
{
// TODO: Localize this
throw;
//throw new IOException(String.Format(CultureInfo.CurrentCulture, "Unable to save persistable object to file {0}", this.fileName));
}
}
乾杯!それはそれを修正したようだ。私はここ数日間、これに悩まされてきました。私はFileModeのオプションとして十分に見ていませんでした。 –