java.lang.NumberFormatException: For input string: "0:0:0:0:0:0:0:1"

今天遇到一个奇怪的问题,记录一下:

使用postman测试接口,我们需要先用postman登录获得一个token,后面的接口调用需要带着这个token,然而登录出问题了。

下面是调用的地址:

http://localhost:9000/api/login?username=13122223333&password=666666

报错:

{
    "status": {
        "code": "999",
        "msg": "系统出现异常"
    },
    "data": "java.lang.NumberFormatException: For input string: \"0:0:0:0:0:0:0:1\""
}

报错位置代码:

public static long ipToLong(String strIp) {
		String[]ip = strIp.split("\\.");
		return (Long.parseLong(ip[0]) << 24) + (Long.parseLong(ip[1]) << 16) + (Long.parseLong(ip[2]) << 8) + Long.parseLong(ip[3]);
	}

java.lang.NumberFormatException: For input string:

传过来的ip居然是这样子,很尴尬。

使用浏览器访问没问题,因为是前后端分离的,页面是让前端帮忙开的,访问路径:

http://192.168.1.247:8093

写ip没问题,尝试把localhost换成127.0.0.1,问题解决了。成功的返回了token。

java.lang.NumberFormatException: For input string:

在“C:\Windows\System32\drivers\etc\hosts”文件里写了localhost与127.0.0.1的映射关系

# localhost name resolution is handled within DNS itself.
#	127.0.0.1       localhost
#	::1             localhost

访问localhost的时候应该会自动将ip转化为127.0.0.1,不知道为什么没有进行转化。

有知道大牛评论评论

你可能感兴趣的:(java.lang.NumberFormatException: For input string: "0:0:0:0:0:0:0:1")