Hi,

Vladimir Loubenski wrote:
I have large amount of data (more than computer RAM) that I need to
wrote to XML file.
How can I do that? It's not a problem for me to use another than DOM API
but I can not find any. For example SAX only for reading.

In most of the modern operating systems the memory a process can use is
not bounded by RAM size.

But if the data size is really huge (or for performance reasons) you
could use you own serialization procedure instead of the DOM API.
Traverse your data and write it out with xml tagging. And don't forget
to replace some special characters with predefined entities like
"<", ">", etc.

Good luck!
        Vitaly

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to