JAVA如何获取访问用户的客户端IP(适用于公网与局域网)
JAVA如何获取访问用户的客户端IP(适用于公网与局域网)2014-11-18/*** 获取访问用户的客户端IP(适用于公网与局域网).*/public static final String getIpAddr(final HttpServletRequest request)throws Exception {if (request == null) {throw (new Exception("getIpAddr method HttpSe...