본문으로 바로가기

[자바]23. Properties 사용하여 프로퍼티 파일 읽기

category Language/자바 2022. 1. 20. 11:11
728x90
반응형
SMALL

	Properties prop = new Properties();
		try {
			prop.load(new FileInputStream(ResourceUtils.getFile("classpath:IBserver/ib.properties");));
		} catch (IOException e) {
			logger.error("readProperties load IOException 발생");
		} 
		
		System.out.println(prop);

728x90
반응형
LIST