我正在使用以下代码来读取文本文件的内容。该文件以某种 Utf8 格式编码:
String File = "ms-appx:///Arabic/file.txt";
contents = await Windows.Storage.PathIO.ReadTextAsync(File, Windows.Storage.Streams.UnicodeEncoding.Utf8);
但是上面给了我错误:
WinRT information: No mapping for the Unicode character exists in the target multi-byte code page.
有什么想法我在这里做错了吗?
谢谢