You should the classpath flag in javac
javac -cp c:\poi.jar YourJava.java
Then try running it also need to specify classpath
java -cp c:\poi.jar YourClass
Then for jar creation
jar cfm YourJarName.jar YourClass.class poi.jar manifest.txt
In the manifest text specify the main class.