I have this Java application and I’m using an external Jar and one of the functions is throwing a java.io.FileNotFoundException. I have the file that it’s looking for but I have no idea where I’m supposed to put it. Is there any program I can use that can give me the location of the path that it’s trying to look at? Thanks.
Share
Don’t you have to the
.classfile of the Java class containing that method.If yes, decompile it to view the source code. This is one such decompilerAlso, try to look for any config file like a property file that may have the path information.
System.getProperty("user.dir")and do some hit-trial by placing the file there.