.net 安全保存到 Xml 文件以防崩溃
如果应用程序在 XmlDocument.Save()
方法期间崩溃,会发生什么情况?
例如,我将一些大量信息保存到 Xml 文件中。应用程序崩溃并且文件的 xml 格式变得不正确并且无法再次加载。如何预防呢?
另外,应用程序的设置文件怎么样?如果应用程序在保存设置文件时崩溃,有效性会被破坏吗?
What will happen if application crashes during XmlDocument.Save()
method?
For example, I am saving some huge inforamtion into Xml file. Application crashes and file's xml format becomes incorrect and it can't be loaded again. How to prevent it?
Also, what about the application's setting file? Will the validity be broken If app crashes during saving setting's file ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果应用程序在保存设置文件期间崩溃,则该文件将不再有效。对于小 xml 文件,我使用下一个代码来防止损坏:
对于大文件,有不同的方法可以做到这一点:
If application crashes during saving settings file, than that file will not be valid anymore. For a small xml files I am using next code to prevent corruption:
For big files there are different ways to do that: