sun.misc.BASE64Decoder is Sun proprietary API and may be removed in a future release
프로그래밍/JAVA 2012. 9. 26. 19:43eclipse 가 아닌 다른방식으로 컴파일을 했을때 아래와 같은 warring message 를 볼수있습니다.
sun.misc.BASE64Incoder is Sun proprietary API and may be removed in a future release
sun.misc.BASE64Decoder is Sun proprietary API and may be removed in a future release
http://www.oracle.com/technetwork/java/faq-sun-packages-142232.html
이 이야기는 간단히 이야기해서 sun.* 패키지의 클래스들은 사용하지 말고 다른것으로 바꾸라는 경고입니다.
대체할만 한것으로는
http://www.source-code.biz/base64coder/java/
http://huikyun.tistory.com/234
http://devday.tistory.com/2027
고맙습니다.