google-code-export / objectify-appengine

Automatically exported from code.google.com/p/objectify-appengine
MIT License
1 stars 0 forks source link

Charset problem on save action #209

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
How to fix the charset issue ?
I created an object that contains "Après avoir été" string
I saved the object by using:  ofy().save().entity(anObject).now(); 
the string was saved but is broken "Apr?s avoir ?t?" 
thanks

Original issue reported on code.google.com by umitay.t...@gmail.com on 18 Jun 2014 at 8:50

GoogleCodeExporter commented 9 years ago
This is not an Objectify issue. Objectify does not munge strings at all. Which 
is to say, whatever you save (as a Java UTF-16 string) is what you will get 
back.

This is almost certainly an issue with either the input (converting whatever 
data input you have to a Java string) or the output (converting the java string 
to whatever you are viewing it with). Not debuggable from here :)

Original comment by lhori...@gmail.com on 18 Jun 2014 at 9:16