|
If the host uses eclipse, then you can directly put the jar package under the eclipse project. I am talking about the java project, and then change the properties of the project.
If you are writing in a simple text editor such as Notepad, use the following command
javac Hello.java
java -cp .; Your jar package path is generally placed in the same directory Hello
Absolutely ok |
|