byte[] split and parse tools
inspired by http://www.ghielectronics.com/community/forum/topic?id=11534
to process utf8 byte arrays (from gps or http.respose o.e.) without encoding a string.
instead of using the slowly string operations to split and prase received data I created a ByteArrayTools class to process directly the byte[] data
- get the Index of a special symbol / delimiter
- split the byte[] to a array of byte[] separated by delimiter
- parse to string
- parse to integer
- parse to single
- parse to double