我正在使用 XDocument 来保存某种数据库。该数据库由注册的聊天机器人组成,我只是有许多具有诸如“用户名”、“所有者”等属性的“机器人”节点。但是,偶尔会有一些聪明人决定制作一个具有非常奇怪角色的机器人作为属性之一。这使得 XDocument 类系列在读取该节点时抛出异常,这是一个非常大的问题,因为数据库无法完全保存,因为它一旦遇到无效字符就停止写入文件。
我的问题是 - 有没有类似的简单方法XSomething.IsValidString(string s)
,所以我可以省略有问题的数据?我的数据库不是官方的,只是个人使用,所以我没有必要包含坏数据。
我正在使用的一些代码(变量file
是 XDocument):
保存:
file.Save(Path.Combine(Environment.CurrentDirectory, "bots.xml"));
加载(在检查是否File.Exists()
等之后):
file = XDocument.Load(Path.Combine(Environment.CurrentDirectory, "bots.xml"));
添加到数据库(变量都是字符串):
file.Root.Add(new XElement("bot",
new XAttribute("username", botusername),
new XAttribute("type", type),
new XAttribute("botversion", botversion),
new XAttribute("bdsversion", bdsversion),
new XAttribute("owner", owner),
new XAttribute("trigger", trigger)));
请原谅我缺乏适当的 XML 技术,我才刚刚开始。我要问的是是否有XSomething.IsValidString(string s)
方法,而不是我的 XML 有多糟糕。
好的,我又遇到了异常,这是确切的消息和堆栈跟踪。
System.ArgumentException: '', hexadecimal value 0x07, is an invalid character.
at System.Xml.XmlUtf8RawTextWriter.InvalidXmlChar(Int32 ch, Byte* pDst, Boolean entitize)
at System.Xml.XmlUtf8RawTextWriter.WriteAttributeTextBlock(Char* pSrc, Char* pSrcEnd)
at System.Xml.XmlUtf8RawTextWriter.WriteString(String text)
at System.Xml.XmlUtf8RawTextWriterIndent.WriteString(String text)
at System.Xml.XmlWellFormedWriter.WriteString(String text)
at System.Xml.XmlWriter.WriteAttributeString(String prefix, String localName, String ns, String value)
at System.Xml.Linq.ElementWriter.WriteStartElement(XElement e)
at System.Xml.Linq.ElementWriter.WriteElement(XElement e)
at System.Xml.Linq.XElement.WriteTo(XmlWriter writer)
at System.Xml.Linq.XContainer.WriteContentTo(XmlWriter writer)
at System.Xml.Linq.XDocument.WriteTo(XmlWriter writer)
at System.Xml.Linq.XDocument.Save(String fileName, SaveOptions options)
at System.Xml.Linq.XDocument.Save(String fileName)
at /* my code stack trace omitted */