Search the web
Sign In
New User? Sign Up
xmlpull-user
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 200 - 229 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
200
Is there a way to 'unget' a event returned by next? This is a pretty basic thing for a parser....
Eric Merritt
cyberlync
Offline Send Email
Nov 11, 2004
6:45 am
201
Is it possible by xmlpull get value on xml tag? Example: "<?xml version=\"1.0\"?>\n" + "\n"...
Fabio Maggi
info_angelini
Offline Send Email
Nov 18, 2004
5:49 pm
202
... i am not sure i understand your question but XmlPull is _streaming_ API so you need to read stream and do not have free access to all tags only to current...
Aleksander Slominski
as10m
Offline Send Email
Nov 18, 2004
6:15 pm
203
I would STRONGLY urge you to opt for option 1. Option 2, loading entire document into memory can be disasterous unless you have complete control over the size...
Kevin Duffey
supreme_java...
Online Now Send Email
Nov 18, 2004
6:53 pm
204
Hi, Yesterday I suggest to a friend to use XmlPull. Today, he told me about OutOfMemory. The cause is he store very large text node (more than 100Mb) and the...
David Bernard
dwayne@...
Send Email
Jan 13, 2005
5:47 pm
205
... this is very special case. currently XmlPull does not support it and AFAIK there is nobody working on such feature. long time ago i was thinking about...
Aleksander Slominski
as10m
Offline Send Email
Jan 13, 2005
6:00 pm
206
I am using XmlPullParser to parse an xml input string and output portions of it to a string buffer. I am using next() to obtain events. When I have an event...
bonniezeller
Offline Send Email
Mar 7, 2005
8:58 pm
207
... use XmlPullParser.nextToken() instead of next() and entityRef in XmlSerializer ...
Aleksander Slominski
as10m
Offline Send Email
Mar 7, 2005
9:47 pm
208
... XmlPullParser parser can not modify anything (it is only reading) - you need XmlSerializer (to write), check this example: ...
Aleksander Slominski
as10m
Offline Send Email
May 4, 2005
4:36 pm
209
Hello Thanks in advance I try this and generate java.lang.IllegalArgumentException: startTag() must be called before attribute() What i can do? ... you ... ...
operaska
Offline Send Email
May 4, 2005
6:00 pm
210
... did you get unmodified Roundtrip to work? i am pretty sure it works. makes sure you use the latest version of xmlpull compatible parser (i test it with...
Aleksander Slominski
as10m
Offline Send Email
May 4, 2005
6:12 pm
211
Thank you for answering My question is the following one: I have a String with format XML, to which I want to validate him the date that is an attribute of the...
operaska
Offline Send Email
May 4, 2005
7:11 pm
212
... modify Roundtrip to have parser read from string (StringReader) and serializer to write back XML into string (StringWriter) alek ... -- The best way to...
Aleksander Slominski
as10m
Offline Send Email
May 4, 2005
7:19 pm
213
... study API, samples, and read about xmlpull: http://www.cafeconleche.org/books/xmljava/chapters/ch05s09.html and if you do not understand XML parsing then...
Aleksander Slominski
as10m
Offline Send Email
May 4, 2005
8:24 pm
214
Many Many Many Thanks, xpp is the best parser XML that I have seen. Thank you again Please he looks at this: ...
operaska
Offline Send Email
May 4, 2005
9:54 pm
215
... check http://www.xmlpull.org/v1/download/unpacked/doc/quick_write.html http://www.xmlpull.org/v1/doc/api/org/xmlpull/v1/XmlSerializer.html ... i do not...
Aleksander Slominski
as10m
Offline Send Email
May 10, 2005
12:15 am
216
Hi, Just to let you know that since version 3.3, the Javolution open-source project (http://javolution.org) provides a XPP with no String allocation! This...
Jean-Marie Dautelle
dautelle
Offline Send Email
May 20, 2005
11:26 pm
217
Hey all, I've been using xmlpull for some tme now, yet it seems that sometimes I think I may not be parsing the documents right. I usually use: ...
Kevin Duffey
supreme_java...
Online Now Send Email
May 21, 2005
4:05 am
218
... how did you test performance? ... does itg pass XmlPull unit tests? if so i will be happy add to the list. how i can i get code running? you point to...
Aleksander Slominski
as10m
Offline Send Email
May 21, 2005
7:56 pm
219
... you need to make sure to position parser on correct container start tag before firing parsing loop - see example code below - when you run you should see...
Aleksander Slominski
as10m
Offline Send Email
May 21, 2005
8:34 pm
220
Hi, ... Performance has been measured on same xml files (Javolution versus kxml2). I would recommend you try it using your own xml file as results may vary ...
Jean-Marie Dautelle
dautelle
Offline Send Email
May 21, 2005
8:35 pm
221
... which file was that? could you send it to me? ... did you try xpp3? ... sounds very good! ... it allocated CharSequences? ... String implements...
Aleksander Slominski
as10m
Offline Send Email
May 21, 2005
8:42 pm
222
Hi, ... Here are some results using latest saxbench2 (rand_10000.xml). XPP3-1.1.3.4.M: Time: 274071 us Time: 231903 us Time: 237760 us Javolution 3.3.3 Time:...
Jean-Marie Dautelle
dautelle
Offline Send Email
May 22, 2005
5:32 am
223
Hi, I think the initial next() is the problem: If the start tag is the next event after START_DOCUMENT, the first start tag will be missed. The nextTag()...
Stefan Haustein
dukoids
Offline Send Email
May 22, 2005
11:57 am
224
Hi, one of the goals of XmlPull is to be compatible with the Java 2 Micro edition (CLDC 1.0), which does not contain the CharSequence. However, perhaps we...
Stefan Haustein
dukoids
Offline Send Email
May 22, 2005
12:17 pm
225
Really? I thought nextTag() would skip MORE elements than next()? I take it there is ALWAYS a start document event even if the xml coming back does not have a...
Kevin Duffey
supreme_java...
Online Now Send Email
May 22, 2005
4:10 pm
226
... Here is how i do this: 1. position parser on container element: parser.nextTag(); parser.require(parser.START_TAG, null, null); 2. call actual...
Aleksander Slominski
as10m
Offline Send Email
May 22, 2005
5:39 pm
227
... hi Jean-Marie, could you run test with MXParserCachingStrings instead of MXParser (that should increase performance quite a bit as it tries to minimize ...
Aleksander Slominski
as10m
Offline Send Email
May 22, 2005
7:56 pm
228
Hi, ... MXParserCachingStrings: Time: 204646 us Time: 165761 us Time: 165703 us ... If you define a new pull parser interface, backward compatibility should...
Jean-Marie Dautelle
dautelle
Offline Send Email
May 22, 2005
11:51 pm
229
... Subject: Get specific tag Date: Tue, 24 May 2005 18:27:23 -0000 From: operaska <skatalites@...> To: aslom@... Hello i need to get a...
Aleksander Slominski
as10m
Offline Send Email
May 24, 2005
6:45 pm
Messages 200 - 229 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help