Eclipse Execution

Hi all,

I managed to write a piece of code which requires the use of 3 jar files which are in a folder called "lib" in the same folder of the class file.

The only way to execute this file is by using the command prompt and the command I use is

java -classpath ".;./lib/file1.jar;./lib/file2.jar;./lib/file3.jar" DBTest

Could someone kindly tell me how I can add those 3 files in eclipse so I can execute from within eclipse and stop using cmd?

THANKS ALL :)

[496 byte] By [Xenobiusa] at [2007-11-27 7:38:18]
# 1
Right click on the project in the Project explorer and then go to Build Path --> Configure Build Path --> Select the "Libraries" tab and then "Add External Jars". There browse for the jar files and then select open.. the jar files will be added in your build path
diptaPBa at 2007-7-12 19:18:51 > top of Java-index,Java Essentials,New To Java...
# 2
You ROCK !!THANKS :D
Xenobiusa at 2007-7-12 19:18:51 > top of Java-index,Java Essentials,New To Java...