How to run Java programs from the terminal?
问题 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.java This is my Eclipse class file structure: I am not able to find why is this throwing Unable to access jarfile kxml2-2.3.0.jar ? 回答1: 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