gpt4 book ai didi

.net - XamlReader.Parse 抛出 "Invalid character in the given encoding"

转载 作者:行者123 更新时间:2023-12-01 16:39:54 25 4
gpt4 key购买 nike

我的以下代码有问题:

using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
{
var content = reader.ReadToEnd();
ParserContext context = new ParserContext()
{
BaseUri = new Uri(Configuration.SkinsFolder)
//,XmlLang = "utf-8" // I have tried with this parameter and without it
};
var result = XamlReader.Parse(content, context);
return result;
}

对应的xaml,出现问题的地方:

...
<TextBlock>русская надпись</TextBlock>
<TextBlock Text="קח מספר" />
...

在解析此 xaml 期间,我遇到异常:

Invalid character in the given encoding. Line 76, position 167.
at System.Windows.Markup.XamlReaderHelper.RethrowAsParseException(String keyString, Int32 lineNumber, Int32 linePosition, Exception innerException)
at System.Windows.Markup.XamlReaderHelper.Read(XamlNode& xamlNode)
at System.Windows.Markup.XamlParser.ReadXaml(Boolean singleRecordMode)
at System.Windows.Markup.XamlParser._Parse()
at System.Windows.Markup.XamlParser.Parse()

Xaml 文件保存为 utf-8

有人知道我如何加载这个xaml而不出现这样的问题吗?提前致谢!

PS:好的,我已经找到问题的根源了。

加载xaml的正确方法是使用XamlReader.Load方法而不是XamlReader.Parse。就我而言,它似乎是:

using (Stream stream = new FileStream(source, FileMode.Open))
{
ParserContext context = new ParserContext()
{
BaseUri = new Uri(Configuration.SkinsFolder)
};
var result = XamlReader.Load(stream, context);
return result;
}

谢谢大家!

最佳答案

我在使用德语元音变音字符时也遇到了同样的问题。我认为 .NET Framework 中存在错误。尝试使用此函数而不是 XamlReader.Parse(content, context):

public static object Parse(string xamlText, ParserContext parserContext)
{
return System.Windows.Markup.XamlReader.Load((Stream) new MemoryStream(Encoding.UTF8.GetBytes(xamlText)), parserContext);
}

关于.net - XamlReader.Parse 抛出 "Invalid character in the given encoding",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5841647/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com