xml parsing - how to retrive xml data using sax parser -
i have plain xml file, don't have namespace. want read xml file , put bean. not able read xml data line line. please me read xml using sax parser.
regards narsi.
"so please me read xml using sax parser."
ok, questions have? have tried looking @ examples?
are working sax java implementation? c++? ?
sax parser event based xml parsing utility. 1 of fundamental purposes of sax is light on memory, entire document not stored in memory once file read.
"i not able read xml data line line."
what mean line line? if want read file "line line", use regular file input stream. sax provides notifications when events occurring during parsing of file (i.e. started reading document, started reading element, ended element, etc, etc.)
Comments
Post a Comment