- UID
- 20
- 积分
- 1652
- 回帖
- 0
- 贡献
-
- 金钱
-
- 注册时间
- 2012-7-15
- 最后登录
- 1970-1-1
- 在线时间
- 小时
TA的每日心情 | 擦汗 2021-4-27 11:41 |
---|
签到天数: 131 天 连续签到: 1 天 [LV.7]雪女
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?创建账号
×
本帖最后由 岚涯蝶影 于 2012-8-2 01:58 编辑
- public String getIpAddr(HttpServletRequest request) {
- String strClientIp = request.getHeader("x-forwarded-for");
- log.info("All the IP address string is: " + strClientIp);
- if(strClientIp == null || strClientIp.length() == 0 ||"unknown".equalsIgnoreCase(strClientIp))
- {
- strClientIp = request.getRemoteAddr();
- }else{
- StringList ipList = new StringList();
- BusiAcceptAction.SplitsString(strClientIp, ',' , ipList);
- String strIp = new String();
- for(int index = 0; index < ipList.size(); index ++)
- {
- strIp = (String)ipList.get(index);
- if(!("unknown".equalsIgnoreCase(strIp)))
- {
- strClientIp = strIp;
- break;
- }
- }
- }
- return strClientIp;
- }
复制代码 |
|