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?

link|improve this question

62% accept rate
What sort of 'strange' characters are you getting? link here is a table of UTF-8 characters with unicode and hex values- is it one of these? – Robotnik Nov 18 '11 at 1:54
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.