You might want to look at the JDom or DOM APIs. You could load your object into a DOM tree, modify it, and then export it out to a stream.
On Wed, Sep 24, 2008 at 11:02 AM, <[EMAIL PROTECTED]> wrote: > i am new in commons scxml and want to load a scxml-document from system and > parse it to Java object,then edit it and output the edited document. how can > i proceed ? > example: i have the following document: NewText.xml > > <scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" > initialstate="reset"> > - <state id="reset"> > <transition event="watch.start" target="running" /> > </state> > - <state id="running"> > <transition event="watch.split" target="paused" /> > </state> > - <state id="paused"> > <transition event="watch.unsplit" target="running" /> > <transition event="watch.stop" target="stopped" /> > </state> > - <state id="stopped"> > <transition event="watch.reset" target="reset" /> > </state> > </scxml> > > and want to load it a and the transition: > <transition event="watch.stop" target="stopped" /> > then create a new document newtext_1.xml an write the result inside. > > thanks for your help in advance > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
