Java Properties Load from File loadPropertiesFile(String filePath)

Here you can find the source of loadPropertiesFile(String filePath)

Description

Methode de chargement d'un fichier de proprietes

License

Apache License

Parameter

Parameter Description
filePath Chemin du fichier tenant compte de son emplacement

Return

Proprietes chargees

Declaration

public static Properties loadPropertiesFile(String filePath) 

Method Source Code

//package com.java2s;
/*//ww w  .j  a  va 2  s .  c om
 * #%L
 * Commons Tools
 * $Id:$
 * $HeadURL:$
 * %%
 * Copyright (C) 2013 - 2015 Leadware
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import java.io.FileInputStream;
import java.io.FileNotFoundException;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Properties;

public class Main {
    /**
     * Methode de chargement d'un fichier de proprietes
     * @param filePath Chemin du fichier tenant compte de son emplacement    
     * @return Proprietes chargees
     */
    public static Properties loadPropertiesFile(String filePath) {

        // Si le chemin est vide
        if (filePath == null || filePath.trim().isEmpty())
            throw new RuntimeException(
                    "Erreur lors du chargement du fichier de proprietes: Le chemin du fichier n'est pas renseigne");

        // Chemin complet
        String completeFilePath = filePath.trim();

        // Stream sur le fichier
        InputStream stream = null;

        try {

            // Chargement du Stream sur le fichier
            stream = new FileInputStream(completeFilePath);

        } catch (FileNotFoundException e) {

            // On relance
            throw new RuntimeException(
                    "Erreur lors du chargement du fichier de proprietes: Le chemin du fichier n'existe pas", e);
        }

        // On retourne les proprietes
        return loadPropertiesFileFromStream(stream);
    }

    /**
     * Methode de chargement d'un fichier de proprietes a partir d'un stream
     * @param stream Stream a charger   
     * @return Proprietes chargees
     */
    public static Properties loadPropertiesFileFromStream(InputStream stream) {

        // Si le chemin est vide
        if (stream == null)
            throw new RuntimeException("Erreur lors du chargement du fichier de proprietes: Le stream est null");

        // Proprietes
        Properties properties = new Properties();

        try {

            // Chargement du fichier de propriete
            properties.load(new InputStreamReader(stream));

        } catch (IOException e) {

            // Fermeture
            closeStream(stream);

            // On relance
            throw new RuntimeException("Erreur lors du chargement du fichier de proprietes", e);
        }

        // Fermeture
        closeStream(stream);

        // On retourne les proprietes
        return properties;
    }

    /**
     * Methode de fermeture d'un stream
     * @param stream   Stream a fermer
     */
    protected static void closeStream(InputStream stream) {

        // Si le stream est null
        if (stream == null)
            return;

        try {

            // Tentative de fermeture
            stream.close();

        } catch (IOException e) {
        }
    }
}

Related

  1. loadProperties(String sFile)
  2. loadPropertiesFile(File file, boolean critical)
  3. loadPropertiesFile(final File file)
  4. loadPropertiesFile(String fileName)
  5. loadPropertiesFile(String fileName)
  6. loadPropertiesFile(String filePath)
  7. loadPropertiesFile(String path)
  8. loadPropertiesFile(String propertiesFileName)
  9. loadPropertiesFile(String propFile)