Suppose I have the IP stored in a String:
String ip = "192.168.2.1"
and I want to get the byte array with the four ints. How can I do it? Thanks!
|
|
|
Something like this:
|
|||||
|
|
|
Something like
according to this should works. |
|||
|
|
|
Each number is a byte, so in your case the appropriate byte[] would be { 192, 168, 2, 1 }. To be more specific, if you have the string, you first have to split it by the "."s and then parse a byte from each resulting string. |
|||||
|
|