Hi all,
My app has this sub:
As we can see there is additional unknown character as log below
Same code i have try in B4J work just fine.
Any one has similar situation as mine ?
Thank you
My app has this sub:
B4X:
Sub ConvertData(strWeb As String) As List
strWeb = "eJyVkjsLwjAURhXBH5JZJa2Kjy2kUYpJbslNu4gEB3FxEyfxvxvR4ar10Tnn5LuvdrfTaq3PzOyOx+1+x+asyHzQwiv0oVIOc7Csx6rt4XR7TAfJgLNL700AGRYODEGTDxgKU+jcLinKf7BBgvUOtFauQQKxgsltE9MIK5bNwh5K0yQsC+WqHIGGTf+3XvI+mR7oFsc1VCEQ48QyRcAZT1LOh3W0A6migD6eCjEWQqP6wldCl5Sv2zx6kKtYSmn9Hz/f6ey5DD7pZ0r2U55M6xVH6dE4tri5Aofk45E="
Dim su As StringUtils
Dim data() As Byte = su.DecodeBase64(strWeb)
Dim zip As CompressedStreams
Dim extract() As Byte
extract = zip.DecompressBytes(data,"zlib")
Dim json As JSONParser
Dim xx As String = BytesToString(extract,0,extract.Length,"utf-8")
Log(xx) '<---- additional character at front
json.Initialize(xx)
Dim list As List
list = json.NextArray
Return list
End Sub
As we can see there is additional unknown character as log below
Same code i have try in B4J work just fine.
Any one has similar situation as mine ?
Thank you