본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA

MessageFormat, 문자열을 정의하고 {0} index에 채워넣다

MessageFormat

정해진 양식에 맞게 데이터를 출력할 수 있도록 도와준다.

양식을 미리 작성하고 다수의 데이터를 같은 양식으로 출력할때 사용하면 좋다.

import java.text.MessageFormat;

public class MessageFormatExample {

    public static void main(String[] args) {
        // 템플릿 문자열 정의
        String template = "Hello, {0}! Today is {1}.";

        // MessageFormat을 사용하여 변수를 채워넣습니다.
        String formattedMessage = MessageFormat.format(template, "John", "Monday");

        // 결과 출력
        System.out.println(formattedMessage);
    }
}
Hello, John! Today is Monday.