有没有在Java中的方式来告诉它仅返回IPv6的? 我用尽了一切,并不能得到它的工作。
try
{
InetAddress inet = InetAddress.getByName(hostName);
boolean status = inet.isReachable(5000);
if (status)
{
System.out.println(inet.getCanonicalHostName() + " Host Reached\t" + java.net.Inet6Address.getByName(hostName).getHostAddress());
}
else
{
System.out.println(inet.getCanonicalHostName() + " Host Unreachable");
}
}
catch (UnknownHostException e)
{
System.err.println("Host does not exists");
}
catch (IOException e)
{
System.err.println("Error in reaching the Host");
}
该生产线我用尽量只返回的IPv6:
System.out.println(inet.getCanonicalHostName() + " Host Reached\t" + java.net.Inet6Address.getByName(hostName).getHostAddress());
这使返回的IPv4。 任何人都有的,为什么它这样做的任何想法?
java.net.Inet6Address
不覆盖getByName()
所以它总是会返回特定的IPv4地址,除非您的参数本身处于有效的IPv6地址的形式,在这种情况下,该方法将返回Inet6Address,惟一-对象。
例如:
getByName("stackoverflow.com")
- > Inet4Address
getByName("2001:0db8:85a3:08d3:1319:8a2e:0370:7344")
- >是Inet6Address
InetAddress.getByName() -文档
确定,在给定主机名称的主机的IP地址。 主机名可以是一台机器的名称,如“java.sun.com”,或它的IP地址的文本表示。 如果文字IP地址提供,只有地址格式的有效性进行检查。
>对于在文字的IPv6地址指定的主机,无论是在RFC 2732或RFC中定义的2373字面IPv6地址格式中定义的形式被接受。<
所以,如果你想获得一个IPv6的地址,你需要你的参数中定义它,或配置DNS服务器来代替返回的IPv4地址的IPv6地址。
检索,IPv6地址的另一种方法是使用InetAddress.getAllByName("www.google.at")
返回主机的所有已知IP-地址。
例如,您可以使用此方法返回的数组,返回第一个IPv6地址或过滤null
,如果主机没有一个:
public Inet6Address getIPv6Addresses(InetAddress[] addresses) {
for (InetAddress addr : addresses) {
if (addr instanceof Inet6Address) {
return (Inet6Address) addr;
}
}
return null;
}
更新:对于更多的功能,尤其是那些影响DNS的服务器,我建议使用外部库DNSJava,因为DNS支持纯Java实现很差。
http://www.dnsjava.org/
目前代码:
public class Ping
{
public void pingHost (String hostName)
{
try
{
InetAddress[] inet = InetAddress.getAllByName(hostName);
String address = this.getIPv4Addresses(inet).getHostAddress();
boolean status = this.getIPv6Addresses(inet).isReachable(5000);
if (status)
{
System.out.println(reverseDns(address) + " Host Reached\t" + this.getIPv6Addresses(inet).getHostAddress());
}
else
{
System.out.println(this.getIPv6Addresses(inet).getCanonicalHostName() + " Host Unreachable");
}
}
catch (UnknownHostException e)
{
System.err.println("Host does not exists");
}
catch (IOException e)
{
System.err.println("Error in reaching the Host");
}
}
public Inet6Address getIPv6Addresses(InetAddress[] addresses)
{
for (InetAddress addr : addresses)
{
if (addr instanceof Inet6Address)
{
return (Inet6Address) addr;
}
}
return null;
}
public Inet4Address getIPv4Addresses(InetAddress[] addresses)
{
for (InetAddress addr : addresses)
{
if (addr instanceof Inet4Address)
{
return (Inet4Address) addr;
}
}
return null;
}
public static String reverseDns(String hostIp) throws IOException
{
Resolver res = new ExtendedResolver();
Name name = ReverseMap.fromAddress(hostIp);
int type = Type.PTR;
int dclass = DClass.IN;
Record rec = Record.newRecord(name, type, dclass);
Message query = Message.newQuery(rec);
Message response = res.send(query);
Record[] answers = response.getSectionArray(Section.ANSWER);
if (answers.length == 0)
return hostIp;
else
return answers[0].rdataToString();
}
}
你可以尝试定义JVM_ARGS
-Djava.net.preferIPv4Stack=false -Djava.net.preferIPv6Addresses=true
与道具会喜欢上的IPv6地址InetAddress#getByName
更多信息: https://docs.oracle.com/javase/8/docs/technotes/guides/net/ipv6_guide/