I am working with executable jar files
I have a folder E:\a which has Test.java and its .class files,in E:\b. I have two classes Employee.java and student.java and there .class files are E:\C which contains folder structure as com\emp, com\std
I have created a txt file in E:\a Main.txt which has Main-class: Test for manifest files
Now when i run jar -cvfm app.jar Main.txt e:\c to contains files at e:\c location in jar file, inside my jar files folder structure is created like inside jar C\com\emp C\com\std so when I try to run this jar file using java -jar app.jar it is unable to find .class files of employee and student
It should execute jar file app.jar