次のコードを使用して、テキスト ファイルの内容を読み取ります。ファイルはある種の 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.
ここで私が間違っていることはありますか?
ありがとう