4

I downloaded the svgsalamander.jar, with all its pretty classes and stuff. But i can not sucesfully load them into my existing Java project, using Eclipse, so, how can i do it?

I am truly sorry about asking this, but i tried with google, stack and found nothing useful.

Thanks!

Gabriel
  • 5,453
  • 14
  • 63
  • 92

1 Answers1

4

Right-click on the project; select Properties.

Select Java Build Path.

Select the Libraries tab.

Click the Add External JARs button.

Find the path to your JAR and add it.

danben
  • 80,905
  • 18
  • 123
  • 145
  • I would recommend putting/copying the JAR file in the project itself. For more hints: http://www.wikihow.com/Add-JARs-to-Project-Build-Paths-in-Eclipse-%28Java%29 You may accidently delete or move the JAR file outside Eclipse and the project would then break. – BalusC Mar 02 '10 at 01:28