在 Jersey (JAX-RS) 请求的上下文中获取客户端语言环境的最佳和更便携的方法是什么?我有以下代码:
@GET
@Produces("text/html")
@Path("/myrequest")
public Response myRequest(@Context HttpServletRequest request) {
Locale locale = ...
}
请假设“请求”是由浏览器中的一些 javascript 代码发出的,通过调用window.location = ...;