在Jersey(JAX-RS)请求的上下文中,获取客户区域设置的最佳方式和可移植性是什么?我有以下代码:
@GET
@Produces("text/html")
@Path("/myrequest")
public Response myRequest(@Context HttpServletRequest request) {
Locale locale = ...
}
请假设“请求”是由浏览器中的某些javascript代码通过调用
window.location = ...;
发出的 最佳答案
Locale locale = request.getLocale();
关于java - 在 Jersey 请求中获取客户区域设置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12246383/