In Eclipse, go to your project properties and select Java Build Path.
Then select the Libraries tab and you can add your external jar file
there.

--
Jack Ha
Open Source Development Center
・T・ ・ ・Mobile・ stick together

The views, opinions and statements in this email are those of
the author solely in their individual capacity, and do not
necessarily represent those of T-Mobile USA, Inc.


On Aug 26, 1:47 am, Belik77 <beli...@walla.co.il> wrote:
> 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 android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to