How to run Java programs from the terminal?

后端 未结 3 1903
情话喂你
情话喂你 2021-01-15 04:36

I am trying to run a Java program from my Terminal. I have Mac OS X 10.7.

teamL javac -jar kxml2-2.3.0.jar XMLHandler.java ServiceEndpoint.java TeamL.

相关标签:
3条回答
  • 2021-01-15 04:37

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

    java -classpath location_of_jar ...

    0 讨论(0)
  • 2021-01-15 04:40

    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.

    0 讨论(0)
  • 2021-01-15 04:48

    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

    0 讨论(0)
提交回复
热议问题