I want to read xml file in my lift app:
val data = XML.load(new java.io.InputStreamReader(new java.io.FileInputStream(filename), encoding));
However, I am getting java.io.FileNotFoundException
. where should I put the file, and what is the correct path from my scala code?
BTW - I am using embedded jetty for my testing, although I need a solution for dev env and production.