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

com.versioneye.utils.PropertiesUtils Maven / Gradle / Ivy

package com.versioneye.utils;

import java.io.*;
import java.util.Properties;

/**
 * Methods to deal with properties files.
 */
public class PropertiesUtils {

    public void writeProperties(Properties properties, String filePath) throws Exception{
        File file = new File(filePath);
        OutputStream out = new FileOutputStream( file );
        properties.store(out, " Properties for http://www.VersionEye.com");
    }

    public Properties readProperties(String filePath) throws Exception{
        Properties properties = new Properties();
        InputStream inputStream = null;
        File file = new File(filePath);
        inputStream = new FileInputStream( file );
        properties.load(inputStream);
        return properties;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy