List of utility methods to do InputStream Create
InputStream | getInputStream(String filepath) get Input Stream try { return new FileInputStream(getFile(filepath)); } catch (FileNotFoundException ex) { InputStream in = ClassLoader .getSystemResourceAsStream(filepath); if (in != null) { return in; } else { ... |