String 클래스 메서드package ch09utility;import java.util.Locale;public class StringTest { public static void main(String[] args) { String str1 = new String ("SEOUL"); //String의 정석이다. String str2 = new String ("korea"); // 1. 대소문자 변환하기.( toLowerCase(), toUpperCase() ). String temp; temp = str1.toLowerCase()+" "+str2.toUpperCase(); System.out.println(temp); ..