Thread: [GD-General] XML Parser
Brought to you by:
vexxed72
From: Chris B. <Chr...@ma...> - 2002-03-07 01:05:27
|
I've been using Expat for quite a while to parse my documents. I've now come to the point where I need to start writing data back in to my XML documents. I've had a quick look around but all I've managed to find is Xerces, which seems to be so massive that I'm finding it dificult to understand(besides the fact that the DLL way larger than the rest of my application). Anyone have suggestions for a lightweight XML parser + Writer? Many thanks Chris NOTICE This e-mail and any attachments are confidential and may contain copyright material of Macquarie Bank or third parties. If you are not the intended recipient of this email you should not read, print, re-transmit, store or act in reliance on this e-mail or any attachments, and should destroy all copies of them. Macquarie Bank does not guarantee the integrity of any emails or any attached files. The views or opinions expressed are the author's own and may not reflect the views or opinions of Macquarie Bank. |
From: Awen L. <ali...@ed...> - 2002-03-07 08:21:52
|
You can use the (probably embedded on your system) xml stuff from Microsoft. Works well from me. Cost you some COM understanding, and probably intensive memory alloc/free. But... (btw Xerces is smarter) -----Message d'origine----- De : gam...@li... [mailto:gam...@li...]De la part de Chris Brodie Envoyé : jeudi 7 mars 2002 02:04 À : 'gam...@li...' Objet : [GD-General] XML Parser I've been using Expat for quite a while to parse my documents. I've now come to the point where I need to start writing data back in to my XML documents. I've had a quick look around but all I've managed to find is Xerces, which seems to be so massive that I'm finding it dificult to understand(besides the fact that the DLL way larger than the rest of my application). Anyone have suggestions for a lightweight XML parser + Writer? Many thanks Chris NOTICE This e-mail and any attachments are confidential and may contain copyright material of Macquarie Bank or third parties. If you are not the intended recipient of this email you should not read, print, re-transmit, store or act in reliance on this e-mail or any attachments, and should destroy all copies of them. Macquarie Bank does not guarantee the integrity of any emails or any attached files. The views or opinions expressed are the author's own and may not reflect the views or opinions of Macquarie Bank. _______________________________________________ Gamedevlists-general mailing list Gam...@li... https://lists.sourceforge.net/lists/listinfo/gamedevlists-general Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=557 |
From: Kent Q. <ken...@co...> - 2002-03-07 13:16:56
|
If you just need to do some quick tooling, there are several XML tools for Java that are very functional and easier than Xerces. We have used nanoxml, which is tiny and easy to implement for simple stuff. And I recently whipped off some useful XML tooling code in a couple of hours using Python. Kent Chris Brodie wrote: > > I've been using Expat for quite a while to parse my documents. I've now come to the point where I need to start writing data back in to my XML documents. > > I've had a quick look around but all I've managed to find is Xerces, which seems to be so massive that I'm finding it dificult to understand(besides the fact that the DLL way larger than the rest of my application). > > Anyone have suggestions for a lightweight XML parser + Writer? > > Many thanks > > Chris > > NOTICE > This e-mail and any attachments are confidential and may contain copyright material of Macquarie Bank or third parties. If you are not the intended recipient of this email you should not read, print, re-transmit, store or act in reliance on this e-mail or any attachments, and should destroy all copies of them. Macquarie Bank does not guarantee the integrity of any emails or any attached files. The views or opinions expressed are the author's own and may not reflect the views or opinions of Macquarie Bank. > > _______________________________________________ > Gamedevlists-general mailing list > Gam...@li... > https://lists.sourceforge.net/lists/listinfo/gamedevlists-general > Archives: > http://sourceforge.net/mailarchive/forum.php?forum_id=557 -- ----------------------------------------------------------------------- Kent Quirk | MindRover: "Astonishingly creative." Game Architect | Check it out! ken...@co... | http://www.mindrover.com/ _____________________________|_________________________________________ |
From: Ivan-Assen I. <as...@ha...> - 2002-03-07 13:29:58
|
> If you just need to do some quick tooling, there are several XML tools > for Java that are very functional and easier than Xerces. We have used > nanoxml, which is tiny and easy to implement for simple stuff. And once the thread has strayed outside the One True Language, I should mention that the XML support in .NET is very nice and easy to use. |