我创建了一个类来验证一些 XML。在那个类中,我有一个验证方法。我还有一个 .xsd 文件,其中包含我的 XML 模式。我被告知要使用此文件,我必须“将 xsd 文件加载到字符串中”
如何将 xsd 文件加载到字符串中?
没有更多上下文,我不知道Load the xsd file into a string
实际意味着什么,但是有更简单的方法来验证 XML。
var xDoc = XDocument.Load(xmlPath);
var set = new XmlSchemaSet();
using (var stream = new StreamReader(xsdPath))
{
// the null here is a validation call back for the XSD itself, unless you
// specifically want to handle XSD validation errors, I just pass a null and let
// an exception get thrown as there usually isn't much you can do with an error in
// the XSD itself
set.Add(XmlSchema.Read(stream, null));
}
xDoc.Validate(set, ValidationCallBack);
然后你只需要ValidationCallBack
在你的类中调用一个方法作为任何验证失败的处理程序(你可以随意命名它,但是Validate()
上面的方法的委托参数必须引用这个方法):
public void ValidationCallBack(object sender, ValidationEventArgs e)
{
// do something with any errors
}
您可以尝试使用此代码
XmlReaderSettings settings = new XmlReaderSettings();
settings.Schemas.Add("....", "youXsd.xsd");
settings.ValidationType = ValidationType.Schema;
settings.ValidationEventHandler += new ValidationEventHandler(YourSettingsValidationEventHandler);
XmlReader books = XmlReader.Create("YouFile.xml", settings);
while (books.Read()) { }
//Your validation
static void YourSettingsValidationEventHandler(object sender, ValidationEventArgs e)
{
}
2 如果您只想加载,可以使用 StreamReader 和 ReadToEnd
将整个文件读入字符串非常容易:
string schema;
using(StreamReader file = new StreamReader(path)
{
schema = file.ReadToEnd();
}
希望这对您的追求有所帮助。