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 ? AllenJB 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. The IPAddress Java library can accomplish what you are describing here. IPv6 addresses are 16 bytes. Using that library, if you are