java 읽 기. properties 파일

736 단어
public class PropertiesUtils {

	public static Properties getProperties() {

		Properties p = new Properties();

		try {
			InputStream inputStream = PropertiesUtils.class.getClassLoader().getResourceAsStream( "/config-file/APIConfig.properties" );

			p.load( inputStream );

		} catch ( IOException e1 ) {
			e1.printStackTrace();
		}

		return p;
	}

}

 
API_SERVER_HOST = api.server.host.com

 
    상수 방식 호출
public static String API_SERVER_HOST = PropertiesUtils.getProperties().getProperty( "API_SERVER_HOST" );

 
 

좋은 웹페이지 즐겨찾기