By definition (see the spec) in an XML file, < is used to open an element. Similarly, > is used to close an element.
To allow for these (and a few other characters) to appear in the XML file, they get encoded as entities.
You should find this is all transparently handled for you - if you put a < into the content of an element, it will be stored as < and then translated back when you get the content back out again.
If this is getting in your way because you're trying to add extra elements into your output file, you should look at the various APIs for creating elements directly -- writing text is going to fail.