Jersey服务中文乱码解决方法

@Path("/users")public class UserService { 
	@GET
	@Path("/get")
	public Response addUser(@HeaderParam("user-agent") String userAgent) {
                Response response = Response.status(200).
                    entity("yourEntity").
                    header("Content-Type", "application/json; charset=utf-8").build();
return response;
    }
}


你可能感兴趣的:(server,中文乱码,jersey)