자바 는 Properties 클래스 를 사용 하여 프로필 정 보 를 읽 습 니 다.
22400 단어 자바 기반
우리 가 읽 을 프로필 의 내용 은 다음 과 같다 고 가정 합 니 다.
# System configuration
# Comments will automatically be excluded by the program.
parameter1=value1
parameter2=value2
코드:
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Properties;
/**
* Main.java
*
* @author outofmemory.cn
*/
public class Main {
Properties config;
/**
* Loads configuration parameters from a textfile and print them out.
*/
public void loadConfigFile() {
//Load configuration file
String filename = "conf/systemconfig.txt";
config = new Properties();
try {
config.load(new FileInputStream(filename));
} catch (FileNotFoundException ex) {
ex.printStackTrace();
return;
} catch (IOException ex) {
ex.printStackTrace();
return;
}
//Print out the configuration parameters
Enumeration en = config.keys();
System.out.println("********** System configuration **********");
while (en.hasMoreElements()) {
String key = (String) en.nextElement();
System.out.println(key + " => " + config.get(key));
}
}
/**
* Starts the program
*
* @param args the command line arguments
*/
public static void main(String[] args) {
new Main().loadConfigFile();
}
}
다음은 출력:
********** System configuration **********
parameter2 => value2
parameter1 => value1
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
범용 용법 예시앞으로 51CTO 에 정착 해 기술 개발 에 전념 할 테 니 잘 부탁드립니다.다음 코드 는 자신 이 (저자: 이 흥 화) 를 공부 할 때 두 드 린 코드 로 주석 이 완비 되 어 있다. 범용 클래스 Point. ja...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.