Hi,
I am developing an application and i have importaed a JAVA file that
uses several packages that my Eclipse does not recognize:
import javax.xml.transform.*;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.dom.DOMSource;
this is the code, that is not compiled:
//Transform and write the Document to the stream
TransformerFactory tf = TransformerFactory.newInstance();
Transformer tr = tf.newTransformer();
Source input = new DOMSource(xmlDoc);
Result output = new StreamResult(out);
tr.transform(input, output);
out.flush();
out.close();
what should i need to install and how, so my SDK will be compatible?
Thanks allot for your help.
Eli.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---