All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.metamx.common.Props Maven / Gradle / Ivy

The newest version!
package com.metamx.common;

import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;

public class Props {

  public static Properties fromFilename(String filename) throws IOException {
    final Properties props = new Properties();
    props.load(new FileInputStream(filename));
    return props;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy