How to import a class into an existing Java project, with Eclipse

I downloaded svgsalamander.jar with all its cool classes, etc. But I cannot load them into my existing Java project using Eclipse, so how can I do this?

I am very sorry that I asked about this, but I tried using google, stack and did not find anything useful.

Thanks!

+4
source share
1 answer

Right click on the project; select Properties .

Choose Java Build Path .

Select the Libraries tab.

Click the Add External JARs .

Find the path to your JAR and add it.

+4
source

Source: https://habr.com/ru/post/1302824/


All Articles