我正在使用XDocument使用独立存储更新XML文件。但是,保存更新的XML文件后,会自动添加一些额外的字符。
以下是更新前的XML文件:
<inventories>
<inventory>
<id>I001</id>
<brand>Apple</brand>
<product>iPhone 5S</product>
<price>750</price>
<description>The newest iPhone</description>
<barcode>1234567</barcode>
<quantity>75</quantity>
<inventory>
</inventories>
然后在更新并保存文件后,它变为:
<inventories>
<inventory>
<id>I001</id>
<brand>Apple</brand>
<product>iPhone 5S</product>
<price>750</price>
<description>The best iPhone</description>
<barcode>1234567</barcode>
<quantity>7</quantity>
<inventory>
</inventories>ies>
我花了很多时间试图找到并修复问题但没有找到解决方案。帖子xdocument save adding extra characters中的解决方案无法帮助我解决问题。
这是我的C#代码:
private void UpdateInventory(string id)
{
using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication())
{
using (IsolatedStorageFileStream stream = isf.OpenFile("inventories.xml", FileMode.OpenOrCreate, FileAccess.ReadWrite))
{
XDocument doc = XDocument.Load(stream);
var item = from c in doc.Descendants("inventory")
where c.Element("id").Value == id
select c;
foreach (XElement e in item)
{
e.Element("price").SetValue(txtPrice.Text);
e.Element("description").SetValue(txtDescription.Text);
e.Element("quantity").SetValue(txtQuantity.Text);
}
stream.Position = 0;
doc.Save(stream);
stream.Close();
NavigationService.Navigate(new Uri("/MainPage.xaml", UriKind.Relative));
}
}
}
答案 0 :(得分:2)
最可靠的方法是重新创建它:
XDocument doc; // declare outside of the using scope
using (IsolatedStorageFileStream stream = isf.OpenFile("inventories.xml",
FileMode.Open, FileAccess.Read))
{
doc = XDocument.Load(stream);
}
// change the document here
using (IsolatedStorageFileStream stream = isf.OpenFile("inventories.xml",
FileMode.Create, // the most critical mode-flag
FileAccess.Write))
{
doc.Save(stream);
}
答案 1 :(得分:1)
当我在Python中遇到类似的问题时,我发现我覆盖了文件的开头而没有截断它。
看看你的代码,我会说你可能会这样做:
stream.Position = 0;
doc.Save(stream);
stream.Close();
根据this answer尝试将流长度设置为其保存后位置:
stream.Position = 0;
doc.Save(stream);
stream.SetLength(stream.Position);
stream.Close();