In android, I have stored many string values in an array list in the format like
<ActionItem><Date>03/07/2012</Date><Time>5:23 PM</Time><EstimatedTime>1:00</EstimatedTime><ParticipantList><Participant>part 7</Participant></ParticipantList><Purpose>purp 7</Purpose></ActionItem><ActionItem><Date>03/07/2012</Date><Time>5:23 PM</Time><EstimatedTime>1:00</EstimatedTime><ParticipantList><Participant>part 8</Participant></ParticipantList><Purpose>purp 8</Purpose></ActionItem>
In order to append the values in a URL I have converted that array list in to a single string. After the conversion when I append the string value in a URL it returns left with some values from the end:
<ActionItem><Date>03/07/2012</Date><Time>5:23 PM</Time><EstimatedTime>1:00</EstimatedTime><ParticipantList><Participant>part 7</Participant></ParticipantList><Purpose>purp 7</Purpose></ActionItem><ActionItem><Da...
It seems to work fine when array list has a minimum number of entries like 4 or 5 in array list. But when the entries in array list exceed this, it returns the string like an unexpected form.