I'm writing a SAX parser in Java to parse a 2.5GB XML file of wikipedia articles. Is there a way to monitor the progress of the parsing in Java?
|
javax.swing.ProgressMonitorInputStream |
|||
|
|
|
You can get an estimate of the current line/column in your file by overriding the method Edit: To the best of my knowledge, there is no standard way to get the absolute position. However, I am sure some SAX implementations do offer this kind of information. |
|||||
|
|
Thanks to EJP's suggestion of With this you have finer control, for example to show multiple progress bars for parallel reading of big xml files. Which is exactly what I did. So, a simplified version of the monitorable stream:
It doesn't know - or care - how big the underlying stream is, so you need to get it some other way, such as from the file itself. So, here goes the simplified sample usage:
In my case the progresses raise nicely from left to right without abnormal jumps. Adjust threshold for optimum balance between performance and responsiveness. Too small and the reading speed can more then double on small devices, too big and the progress would not be smooth. Hope it helps. Feel free to edit if you found mistakes or typos, or vote up to send me some encouragements! :D |
||||
|
|
|
Assuming you know how many articles you have, can't you just keep a counter in the handler? E.g.
(I don't know whether you are parsing "article", it's just an example) If you don't know the number of article in advance, you will need to count it first. Then you can print the status Or even have another thread monitor the progress. In this case, you might want to synchronize access to the counter, but not necessary given that it doesn't need to be really accurate. My 2 cents |
|||
|
|
I'd use the input stream position. Make your own trivial stream class that delegates/inherits from the "real" one and keeps track of bytes read. As you say, getting the total filesize is easy. I wouldn't worry about buffering, lookahead, etc. - for large files like these it's chickenfeed. On the other hand, I'd limit the position to "99%". |
|||
|
|