Issue
I am trying to write some xml generated by my Android app to a file and I'm trying to use javax.xml.transform to do this. Only problem is that javax.xml.transform is not being found by eclipse.
The only options that come up are javax.xml and javax.xml.parsers. Does anyone know what could be going on?
Edit: Just an fyi I have Java JDK 6 update 22 installed.
Solution
I just found out what to do. If you right click on whatever project your working on and go to properties. Then in the libraries tab click add libraries and add the JRE System Library then it has a bunch of new imports that can be used including javax.xml.transform.
That took forever to find out that simple thing =P. But now I know.
Answered By - Graham
Answer Checked By - David Goodson (JavaFixing Volunteer)