Java Properties Load from InputStream loadPropertiesStream(InputStream input)

Here you can find the source of loadPropertiesStream(InputStream input)

Description

load Properties Stream

License

Apache License

Declaration

public static Properties loadPropertiesStream(InputStream input)
            throws IOException 

Method Source Code

//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;
    }
}

Related

  1. loadProperties(InputStream stream)
  2. loadProperties(Properties props, InputStream inputStream)
  3. loadPropertiesFileFromStream(InputStream stream)
  4. loadPropertiesFromStream(InputStream inputStream)
  5. loadPropertiesInputStreamToMap(InputStream propertiesInputStream)