Hi,
>I need an xml parser I can modify and use for may aim, written in Java of
>course!
>Anybody can tell me if there's something I can use?
it depends on what you want to get as output from that parser.
If you want the parser to produce your own business objects the try
the Jakarta Commons-Digester
(http://jakarta.apache.org/commons/digester/). I'm using it on my
recent project and it works fine. You can get the sources there too.
If you want a DOM object you may want to have a look on something like
Xerces (http://xml.apache.org/xerces2-j/) but I have not used it yet.
The sources are also available.
cu
Dirk