Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #15655
| From | Robert Klemme <shortcutter@googlemail.com> |
|---|---|
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: SAX parser splits URL ... |
| Date | 2012-06-26 23:21 -0700 |
| Organization | http://groups.google.com |
| Message-ID | <bbe6a483-b3b6-4dee-bdd8-66857e8ffb9f@googlegroups.com> (permalink) |
| References | <1340769034.526896@nntp.aceinnovative.com> <a4vkb1F60fU1@mid.individual.net> |
On Wednesday, June 27, 2012 7:34:18 AM UTC+2, Robert Klemme wrote: > On 27.06.2012 05:50, lbrt chx _ gemale wrote: > > I have an URL in an XML file that looks like this: > > ~ > > ... > > <Location>http://pagesinxt.com/?dn=www.outfo.org&flrdr=yes&nxte=zip</Location> > > ... > > ~ > > http://xsdvalidation.utilities-online.info/ > > ~ > > is telling me the document itself is valid, but the SAX parser is > > splitting the value at every "&" > > ~ > > // __ start element iIxLvl: |3|Location > > // __ start characters iIxLvl: |3|http://pagesinxt.com/?dn=www.outfo.org| > > // __ start characters iIxLvl: |3|&| > > // __ start characters iIxLvl: |3|flrdr=yes| > > // __ start characters iIxLvl: |3|&| > > // __ start characters iIxLvl: |3|nxte=zip| > > // __ end element iIxLvl: |2|Location| I forgot to mention one thing: the SAX parser is quite free to hand over character sequences in any number of chunks as long as it maintains original order from the document and ensures all characters come from the same external entity. See: http://www.saxproject.org/apidoc/org/xml/sax/ContentHandler.html#characters%28char[],%20int,%20int%29 Kind regards robert
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
SAX parser splits URL ... lbrt chx _ gemale - 2012-06-27 03:50 +0000
Re: SAX parser splits URL ... Robert Klemme <shortcutter@googlemail.com> - 2012-06-27 07:34 +0200
Re: SAX parser splits URL ... Robert Klemme <shortcutter@googlemail.com> - 2012-06-26 23:21 -0700
Re: SAX parser splits URL ... "mayeul.marguet" <mayeul.marguet@free.fr> - 2012-06-27 11:32 +0200
csiph-web