Java tutorial
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ package org.apache.syncope.common.lib; import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.util.Properties; import org.apache.commons.lang3.tuple.Pair; /** * Utility class for manipulating properties files. */ public final class PropertyUtils { public static Pair<Properties, String> read(final Class<?> clazz, final String propertiesFileName, final String confDirProp) { Properties props = new Properties(); String confDirName = null; try (InputStream is = clazz.getResourceAsStream("/" + propertiesFileName)) { props.load(is); confDirName = props.getProperty(confDirProp); if (confDirName != null) { File confDir = new File(confDirName); if (confDir.exists() && confDir.canRead() && confDir.isDirectory()) { File confDirProps = new File(confDir, propertiesFileName); if (confDirProps.exists() && confDirProps.canRead() && confDirProps.isFile()) { props.clear(); props.load(new FileInputStream(confDirProps)); } } } } catch (Exception e) { throw new RuntimeException("Could not read " + propertiesFileName, e); } return Pair.of(props, confDirName); } /** * Private default constructor, for static-only classes. */ private PropertyUtils() { } }