I am using eclipse
ide for my
java projects
and in eclipse there is an option to export the project as a runnable jar file
and it creates MINIFEST.MF file which has all the information about the main method and other jar's used by the code
and in my code i am using
now when i run my code using eclipse , it finds abc.properties file
but when i am running through command prompt
java -jar <jar-file-name> args
returns null
now i believe there is some class path problem
i have set the classpath in my environmental variables but still cannot find above file from class path
please help