Hi All, I try to read a local html website said utils and parse some data. However, the job.Getstring truncates everything after (including) the first occurrence of three dots (...).
Size of website is some 250'000 characters, the string is only 1100 chars.
Size of website is some 250'000 characters, the string is only 1100 chars.
B4X:
Sub getLocalVartaData As ResumableSub
Dim job As HttpJob
job.Initialize("",Me)
job.Download("http://192.168.1.18/home.html")
Wait For (job) JobDone(job As HttpJob)
If job.Success Then
Dim result As String
result = job.GetString
Log("String-Length: "&result.Length)
Log(result)
End If
job.Release
End Sub