GAE Arabic Support
问题 using this code i persist data to GAE Store but when storing Arabic it's format in Store become ????? how to support persist Arabic Text in GAE ? the code : PersistenceManager manager = PMF.get().getPersistenceManager(); Category category = new Category(categoryName); manager.makePersistent(category); manager.refresh(category); manager.close(); 回答1: It's more likely that the text is corrupted when you submit it from a form, or render it to HTML, rather than when it is stored (or retrieved).