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.
'JAVA' 카테고리의 다른 글
기술등급 계산하기 insert, update (0) | 2024.01.08 |
---|---|
경력년차 계산하기 insert, update (0) | 2024.01.08 |
ChoiceFormat, limits와 grades를 설정해 등급추출하기 (0) | 2023.12.28 |
SimpleDateFormat, Date와 Calendar보다 쉽게 날짜 형식 지정하기 (0) | 2023.12.28 |
DecimalFormat, 숫자데이터를 다양한 형식으로 표현하다 (0) | 2023.12.28 |