Another alternative (especially if you need to access resource as a File); is to obtain it's path via:
val path = getClass.getResource("/testData.txt").getPath
val file = new File(path)
as has been pointed out in Scala get file path of file in resources folder