javaip-addressipv6ipv4

How can I convert IPV6 address to IPV4 address?


I have application that uses IPv4 addresses (it stores them as long), so it only understands IPv4 addresses.

Is it possible to convert IPv6 address to IPv4 with Java?


Solution

  • While there are IPv6 equivalents for the IPv4 address range, you can't convert all IPv6 addresses to IPv4 - there are more IPv6 addresses than there are IPv4 addresses.

    The only sane way around this issue is to update your application to be able to understand and store IPv6 addresses.