자바 는 Properties 클래스 를 사용 하여 프로필 정 보 를 읽 습 니 다.

22400 단어 자바 기반
자바 에 서 는 Properties 류 를 사용 하여 설정 정 보 를 편리 하 게 읽 을 수 있 습 니 다.먼저 Properties 류 의 인 스 턴 스 를 만 든 다음,load 방법 으로 FileInputStream 인 스 턴 스 가 가리 키 는 설정 파일 을 사용 해 야 합 니 다.
우리 가 읽 을 프로필 의 내용 은 다음 과 같다 고 가정 합 니 다.
# 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

좋은 웹페이지 즐겨찾기