如何获取HTTP请求的原始国家/地区?

时间:2017-09-12 12:11:57

标签: node.js apache http spring-mvc web

我想根据HTTP客户端的原始国家/地区形成响应。我怎样才能实现它?

1 个答案:

答案 0 :(得分:0)

HttpServletRequest提供有关请求的所有信息

public String yourMethod(HttpServletRequest request){
  System.out.println( "local contry" + request.getLocale().getCountry() );
}

请注意,它基于浏览器配置,我可以住在美国,并像我在印度一样配置。