Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WinRT No mapping for the Unicode character exists in the target multi-byte code page

I am trying to read a file in my Windows 8 Store App. Here is a fragment of code I use to achieve this:

        if(file != null)
        {
            var stream = await file.OpenAsync(FileAccessMode.Read);
            var size = stream.Size;
            using(var inputStream = stream.GetInputStreamAt(0))
            {
                DataReader dataReader = new DataReader(inputStream);
                uint numbytes = await dataReader.LoadAsync((uint)size);
                string text = dataReader.ReadString(numbytes);
            }
        }

However, an exeption is thrown at line:

string text = dataReader.ReadString(numbytes);

Exeption message:

No mapping for the Unicode character exists in the target multi-byte code page.

How do I get by this?

like image 725
Jarek Mazur Avatar asked Aug 13 '13 10:08

Jarek Mazur


Video Answer


2 Answers

Try this instead of string text = dataReader.ReadString(numbytes):

dataReader.ReadBytes(stream);
string text = Convert.ToBase64String(stream);
like image 149
Leo Chapiro Avatar answered Oct 22 '22 07:10

Leo Chapiro


I managed to read file correctly using similar approach to suggested by duDE:

        if(file != null)
        {
            IBuffer buffer = await FileIO.ReadBufferAsync(file);
            DataReader reader = DataReader.FromBuffer(buffer);
            byte[] fileContent = new byte[reader.UnconsumedBufferLength];
            reader.ReadBytes(fileContent);
            string text = Encoding.UTF8.GetString(fileContent, 0, fileContent.Length);
        }

Can somebody please elaborate, why my initial approach didn't work?

like image 36
Jarek Mazur Avatar answered Oct 22 '22 06:10

Jarek Mazur