Here you can find the source of inputStream(String path)
public static InputStream inputStream(String path) throws FileNotFoundException
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { public static InputStream inputStream(String path) throws FileNotFoundException { return new BufferedInputStream(new FileInputStream(path)); }//from ww w. ja v a 2 s . com }