gpt4 book ai didi

java - 避免使用 InetAddress - 以网络字节顺序获取原始 IP 地址

转载 作者:行者123 更新时间:2023-11-30 05:12:50 26 4
gpt4 key购买 nike

我正在尝试在 Google App Engine 上使用 MaxMind GeoLite Country 数据库。但是,我很难让 Java API 正常工作,因为它依赖于 InetAddress 类,而该类无法在 App Engine 上使用。

但是,我不确定是否有一个简单的解决方法,因为它似乎只使用 InetAddress 类来确定给定主机名的 IP。就我而言,主机名始终是 IP。

我需要一种方法,将表示为字符串的 IP 地址转换为网络字节顺序的字节数组(InetAddress 类的 addr.getAddress() 方法提供)。

这是当前 API 使用的代码,我需要找到一种方法来删除对 InetAddress 的所有引用,同时确保它仍然有效!

感谢您的宝贵时间。

/**
* Returns the country the IP address is in.
*
* @param ipAddress String version of an IP address, i.e. "127.0.0.1"
* @return the country the IP address is from.
*/
public Country getCountry(String ipAddress) {
InetAddress addr;
try {
addr = InetAddress.getByName(ipAddress);
} catch (UnknownHostException e) {
return UNKNOWN_COUNTRY;
}
return getCountry(bytesToLong(addr.getAddress()));
}

最佳答案

// note: this is ipv4 specific, and i haven't tried to compile it.
long ipAsLong = 0;
for (String byteString : ipAddress.split("\\."))
{
ipAsLong = (ipAsLong << 8) | Integer.parseInt(byteString);
}

关于java - 避免使用 InetAddress - 以网络字节顺序获取原始 IP 地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2753139/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com