Here you can find the source of getResourceFile(Class> theClass, String fileName)
public static File getResourceFile(Class<?> theClass, String fileName)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static File getResourceFile(Class<?> theClass, String fileName) { return new File(theClass.getResource(fileName).getFile()); }/*from w w w . j a va2 s.c o m*/ }