본문 바로가기
Web Programing!/JAVA / JSP

[JSP] boolean을 string으로 형 변환하기

by 어설픈봉봉이 2011. 9. 24.
반응형
SMALL





원래 자바에서는 boolean값은 타입 캐스팅이 되지 않습니다. 

즉, 'true'라는 값을 출력하고 싶다고 해서 boolean 값 자체를 String으로 타입변환해서 쓸수

없는것이지요.

대신 String.valueOf(boolean_variable) 이렇게 하면 String 값을 리턴해 주지요. 

따라서, 아래 예제처럼 사용 가능 합니다.


public class typeTest { 

  public typeTest() {}
  public static void main(String args[]) {
    boolean boolA = true;
    String strA;
    //strA = (String)boolA; 여기서는 캐스팅 에러가 발생합니다.
    strA = String.valueOf(boolA);
    System.out.println("boolA is " + boolA);
    System.out.println("strA is " + strA);
  }
}

반응형