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.
|
|
|||
|
|
|
if you run the application in a debugger, most debuggers allow you to break when an exception is thrown. you could then inspect the local state of the application to determine the relevant path. you should also probably report this as an enhncement request to the original library author (to include the file name in the thrown exception). |
|||
|
|
|
If the exception stack does not give you a hint on where it is looking for the file, and placing it in common places e.g.
does not work, I guess you can decompile the jar and see where it is looking for the file |
|||
|
|
|
Well, I doubt it is hardcoded so this will probably not show you exactly where it is looking...but you may want to decompile the class using JAD. This may clue you in on where it is looking. |
|||
|
|