I want to use my manifest.mf file as an InputStream
so I can retrieve some of the data that is inside. I use the following line of code:
inputStream = new FileInputStream("../../../../WebContent/META-INF/MANIFEST.MF");
Because the java class and the manifestfile are located in the following directory:
Unfortunately, this path always give me a FilenotFoundException
. What is the correct path to refererence this file?