Good afternoon!
Citizens, please advise how best to parse the big XML that comes through URLConnection , that is, from the web, that is, from this stream:
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream())); As I understand it, you need to choose between SaxParser and the usual manual processing of each XML string for the content of its tag.
What is faster? Will SaxParser thread where there will be a couple of hundreds of thousands of tags? What is the limit of such an XML loading system in terms of speed and volume?