byte abc[]="204.29.207.217";
This is giving an error. Please, tell me correct the method.
|
|
If you're trying to assign hard-coded values, you can use:
Note the cast because Java bytes are signed - the cast here will basically force the overflow to a negative value, which is probably what you want. If you're actually trying to parse a string, you need to do that - split the string into parts and parse each one. If you're trying to convert a string into its binary representation under some particular encoding, you should use
(Note that conventionally the |
|||||||||||||
|
|
That's a string literal. If you're looking to get the binary representation of the string, use one of the |
|||
|
|