Java Properties Load from File load(String path)

Here you can find the source of load(String path)

Description

load

License

Open Source License

Declaration

public static Properties load(String path) 

Method Source Code


//package com.java2s;
/* //from   ww w.  j av  a  2  s .  c  o m
 * Copyright (c) 2009-2010, OKTECH-Info Kft. - All Rights Reserved.
 * 
 * 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.
 * 
 * Please check attribution requirements at
 * 
 * http://code.google.com/p/oktech-profiler/wiki/License
 * 
 */

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

public class Main {
    public static Properties load(String path) {
        Properties props = new Properties();
        try {
            props.load(new FileInputStream(path));
        } catch (FileNotFoundException e) {
            new RuntimeException("Error loading properties: " + path, e);
        } catch (IOException e) {
            new RuntimeException("Error loading properties: " + path, e);
        }
        return props;
    }
}

Related

  1. load(String fileName)
  2. load(String fileName)
  3. load(String filename)
  4. load(String filename)
  5. load(String fileName)
  6. load(String propertiesString)
  7. load(String resource)
  8. load(String resource)
  9. load(String[] paths, String fileName)