InputStream str = this.getClass()
.getClassLoader()
.getResourceAsStream( "filename" );
The file is in the same package as the class.
It is returning null every time. Is there anyway we can replace getResourceAsStream(...)
with some other method?