I'm developing camel application which runs on FUSE server and I'm trying to read xsd file from resources folder in my project as show in below. But problem is I could not able to read the exact path or the file content of the file in resources.
I try to read "Employee.xsd" file inside process as below code but it did not success.
File file = new File(classLoader.getResource("Employee.xsd").getFile());
String fileContent=FileUtils.readFileToString(file);// Using Commons-IO
If gives java.io.FileNotFoundException: File '\Employee.xsd' does not exist
exception. Does any one able to resolve this kind of issue.
You need to load the file from the classpath.
You can search stackoverflow or internet how to load a resource / file from the classpath.
If you have access to
CamelContext
you can use itsClassResolver
to load resources as well.You can see more about it at the javadoc: http://static.javadoc.io/org.apache.camel/camel-core/2.18.1/org/apache/camel/spi/ClassResolver.html