I have encountered a problem with String comparison. (yes I'm using .equals) I found that by converting my seemingly identical strings to charArray one has an additional index containing nothing.
Now I took my string apart using substring and getBytes()
string.substring(0,1).getBytes()
which prints [-17, -69, -65]
all other substrings from this string for example:
string.substring(1,2).getBytes()
print a single array [100]
string?