Tagged Questions

3
votes
3answers
892 views

Why isn't Java's InetAddress class resolving ipv6 addresses to their FQDN?

I'm trying to write a simple program using Java that, given an IP in either version 4 or 6 format, will return its FQDN. The following code works fine when given an ipv4 address, but will only return ...
1
vote
5answers
518 views

Sorting domain names

Has anyone implemented sorting a list of domain names? I have seen some applications sort them as flat strings, but the problem is that you end up scattering all the related hosts in a domain: ...
0
votes
1answer
142 views

Obtain FQDN in Java

I am trying to obtain the FQDN of a windows machine in my domain, using Java code. I have tried the InetAddress.getByName("machine-1").getCanonicalHostName() but only returns the machine name. On ...