How to run Java programs from the terminal?

十年热恋 提交于 2019-12-01 11:38:39

If you are referencing any external libraries, then you have to add them to the classpath. You can add it during compilation of the classes this way.

Go to the src directory and :

javac -classpath ".:<path_to_jar_file>" teamL/*.java

TO execute :

java -cp ".:<path_to_jar_file>" teamL.<class_name>

if your are using eclipse, then go to <project_directory>/bin/ here you can find the compiled classes (so you dont have to compile them) and directly run them using the above java command

Note: Since your classes are packaged under teamL package, you have to run the classes from outside the package by specifying the fully qualified name like teamL.ServiceEndpoint

Have you added that jar to the classpath when you execute the program on the command line? e.g.

java -classpath location_of_jar ...

Rodrigo

javac is a command to compile instead of that you should use the command Java.

  • First set the classpath
  • Then run it like this

java -classpath %classpathVariable% %YourClass% %arguments...

Running a Java Program from Command Prompt this could give you a better idea is for Windows but is similar.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!