Here you can find the source of loadPropertiesStream(InputStream input)
public static Properties loadPropertiesStream(InputStream input) throws IOException
//package com.java2s; //License from project: Apache License import java.io.IOException; import java.io.InputStream; import java.util.Properties; public class Main { public static Properties loadPropertiesStream(InputStream input) throws IOException { Properties prop = new Properties(); prop.load(input);// w w w. j a v a 2s.com return prop; } }