Load a data file by its name. If the file isn't found within the /data directory then it will fallback to the default within the jar resources @param resourcePath The path to the data file to be loaded. @return InputStream of the data file. @throws FileNotFoundException @see #load(String, boolean)
(String resourcePath)
| 25 | * @see #load(String, boolean) |
| 26 | */ |
| 27 | public static InputStream load(String resourcePath) throws FileNotFoundException { |
| 28 | return load(resourcePath, true); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Load a data file by its name. |
no test coverage detected