I am retrieving some data from a SQLite database in Android.
The data is recorded in the database like this: "Diversão". It should be retrieved as: "Diversão". This means "Amusement" in Portuguese.
I tried several ways to decode this from database and it's not working. It just shows strange characters.
I already tried this two things:
Charset charset = Charset.forName("UTF-8");
CharsetEncoder encoder = charset.newEncoder();
CharsetDecoder decoder = charset.newDecoder();
ByteBuffer bbuf = encoder.encode(CharBuffer.wrap("Diversão"));
CharBuffer cbuf = decoder.decode(bbuf);
String s = cbuf.toString();
The method above doesn't work.
I also tried the following:
final String s = new String(cursorLinhas.getString(1).getBytes(), "UTF-8");
This also doesn't work.
Can anyone help me, please?