Hi
Thanks for redirecting your query to the users list,
Update @Produces to have "text/json;charset=UTF-8" or set the other
charset value as needed, that should help...
Let me know if it works please
Cheers, Sergey
On 28/10/14 05:00, Kai Liu wrote:
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.