I managed to read the webpage in line, but when I print it to LogCat using Log.d (), it always appears less than what it actually is on this page.
This makes me suspect that one (or more) of the following possible explanations:
- On Android, a string can grow dynamically, but ultimately is bound by some kind of hard-coded MAX_LENGTH.
- Log.d () is one truncation of string output.
Length limit for string in Android?
If not, is it possible to explain the truncation of my line?
source share