I have to parse data by HTTP request of size about 3MB, through JSon, but the parser that I am using is unable to do so. here is the JSon parser:
public stat
You're parsing whole 3MB string in memory. It causes out of memory exception. Parse large data in stream: