XML Parser functionality
Hello,
I'm new in java so I would like to ask a question which maybe sounds like "silly".
I have a parser which parses an XML file and saving it as a text file (or in any extension I choose).
I also have a datasource (txt) file as an parameter.
So, I want to send to the output some results of the parsing, like:
- which variables are used in templates expressions.
- which variables used in templates expressions and not used in datasource.
etc.
Any idea how am I gonna do it? Meaning to compare variables defined (actually compare texts) in both files and send the ones I want in output.

