Gabriel
Gabriel

Reputation: 5723

How to import class into existing Java project, with Eclipse

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!

Upvotes: 4

Views: 9391

Answers (1)

danben
danben

Reputation: 83220

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.

Upvotes: 4

Related Questions