I know that -_-
that's why there is a string converter like:
byte[] send_data = str.getBytes();
but my main question is
How to send data string example send "hello world" to 192.168.1.2 ?
or
How to send data integer example send 0123456789 to 192.168.1.2 ?
or
How to send data float example send 4.13 to 192.168.1.2 ?
or
How to send data json example send {name:anonymous, address:manado, number:445} to 192.168.1.2 ?
Something like that.