I have this app for XML and flatfile generation in the src folder and I have the jarFiles in Jarfiles folder.
I was trying to compile my java file and I get this error: package org.apache.poi.hssf.usermodel does not exist
, I am importing this in my java file and have the jar file in the src folder. How can I fix this problem?
Update: I tried to include the jarfiles as the answer indicated with this line in cmd javac -cp "jarFiles/*" Xls_Reader.java
, it seems that I am still having the same error