Here you can find the source of load(String path)
public static Properties load(String path)
//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; } }