0

can someone explain me how to run a Java project in command line with external imports, if possible a step by step guide?

user1779374
  • 334
  • 1
  • 4
  • 15
  • 3
    check this http://stackoverflow.com/questions/4421730/importing-external-jar-files – rvini Jun 17 '13 at 07:28
  • Can you clarify what you mean by external import? Are these just 3rd pary Jar files that you are using? If so when you run the jar command you can specify a path for your external libraries, or better still insert this info into the manifest file. – DaveM Jun 17 '13 at 07:30
  • yes,i mean 3rd party jar files – user1779374 Jun 17 '13 at 08:04

1 Answers1

0

Take a look at the classpath option of java: http://javarevisited.blogspot.de/2011/01/how-classpath-work-in-java.html

TeTeT
  • 2,044
  • 20
  • 30