Hi Team,
We are trying to load "geodb.mmdb" which is present in resources folder in our AEM bundle code.
Maxmind uses this mmdb file.
Code for loading the file:
File database = new File(classLoader.getResource("geodb.mmdb").getFile());
dbReader = new DatabaseReader.Builder(database).build();
We are pretty sure that the file exists in the resources folder in our maven project. When we build our package and upload it in AEM we get "java.io.FileNotFoundException: \geodb.mmdb (The system cannot find the file specified)" exception when we hit the servlet.
Thanks,
Mohit
Solved! Go to Solution.
Views
Replies
Total Likes
Thanks so much for the quick response smacdonald2008
The stackoverflow post was really useful to find the right solution.
This is the code for loading the inputStream from the file which is inside the resources folder in bundle jar.
Thanks,
Mohit
Views
Replies
Total Likes
See this community thread - it may help you -- classpath - How to reference an included file in OSGi bundle when performing java.io.File or FileInp...
Views
Replies
Total Likes
Thanks so much for the quick response smacdonald2008
The stackoverflow post was really useful to find the right solution.
This is the code for loading the inputStream from the file which is inside the resources folder in bundle jar.
Thanks,
Mohit
Views
Replies
Total Likes
Views
Likes
Replies