I have a text file with path as resources/templates/temp.txt. I tried reading it with built in Files.readAllBytes() function found in java.nio but that results in an NullPointerException. My code looks as follows:
try {
        File file = new File(getClass().getResource("templates/temp.txt").getFile());
        String temp = new String(Files.readAllBytes(Paths.get(file.getPath())));
        System.out.println(temp);
    }catch(Exception e){
        e.printStackTrace();
    }
The file actually does exist at this location because I am able to get an InputStream and use that in an InputStreamReader and BufferedReader to read the file line-by-line.
    InputStream input = this.getClass().getClassLoader().getResourceAsStream(path)
    //path here is "templates/temp.txt"
I would like to read this file with a built in method rather than iterating over the entire thing. Would appreciate it very much if someone can help with this. Thanks in advance!
 
    