Java – Convert IP address to Decimal Number
In this tutorial, we show you how to convert an IP address to its decimal equivalent in Java, and vice versa. For examples : 255.255.255.255 <-> 4294967295 192.168.1.2 <-> 3232235778 1. IP Address to Decimal We show you two ways to convert an IP address to a decimal number Normal power of 256 Bit shifting …