First should look at this answer
There is no IPv4 to IPv6 mapping that is meaningful. things like 0.0.0.0 and 127.0.0.1 are special cases in the spec, so they have equivalent meaning. But given an IPv4 address it tells you nothing about what its specific IPv6 address would be. You can use a DNS lookup to see if a given IP address resolves to a host which in turn resolves to an IPv6 address in addition to an IPv4 address, but the DNS server would have to be configured to support that for the specific machine.
Also
Networking IPv6 User Guide for JDK/JRE 5.0
Class Inet6Address
For example; isIPv4CompatibleAddress()
public boolean isIPv4CompatibleAddress()
Utility routine to check if the InetAddress is an IPv4 compatible IPv6 address.
Returns:
a boolean indicating if the InetAddress is an IPv4 compatible IPv6 address; or false if address is IPv4 address.