Hi, cxf questions should go to users@cxf and not to dev@cxf. So, I'm moving this thread to users@cxf.
Regarding your question, are you sure you are displaying the json result using the utf-8 text encoding? I suspect you are displaying it (the correct utf-8 encoded json) using simplified chinese GB2312. regards, aki 2014-10-27 21:17 GMT+01:00 Kai Liu <kliu....@gmail.com>: > Dear all, > > I use cxf to handle the Restful return as following: > > @Path("/") > @Produces("text/json") > public class Manager { > @GET > public String getRequest(@QueryParam("service") String serviceName) > throws IOException{ > ..... > return myjsonString; > } > } > > The myjsonString is > > [{"id":{"account":"eucalyptus","user":"zhao6"},"userAccount":"zhao6@eucalyptus","enabled":true,"firstName":"六","lastName":"赵","createDate":"Oct > 26, 2014 2:04:56 PM"}] > > > But When I type the Restful link in the web browser, it shows the > wrong encodings: > > [{"id":{"account":"eucalyptus","user":"zhao6"},"userAccount":"zhao6@eucalyptus","enabled":true,"firstName":"鍏�","lastName":"璧�","createDate":"Oct > 26, 2014 2:04:56 PM"}] > > > I am wondering how to support Chinese Characters in json result for Restful > > > Thanks.