본문 바로가기

JAVA 형변환 int to string String myString = Integer.toString(my int value); String str = "" + i; String to int int i = Integer.parseInt(str); int i = Integer.valueOf(str).intValue(); double to String String str = Double.toString(i); long to String String str = Long.toString(l); float to String String str = Float.toString(f); String to double double d = Double.valueOf(str).doubleValue(); String to long long .. 더보기
MIME (Multipurpose Internet Mail Extensions) MIME (Multipurpose Internet Mail Extensions)는 전자우편을 위한 인터넷 표준 포맷이다. 전자우편은 7비트 ASCII 문자를 사용하여 전송되기 때문에, 8비트 이상의 코드를 사용하는 문자나 바이너리 파일들은 MIME 포맷으로 변환되어 SMTP로 전송된다. 실질적으로 SMTP로 전송되는 대부분의 전자우편은 MIME 형식이다. MIME 표준에 정의된 content types은 HTTP와 같은 통신 프로토콜에서 사용되며, 점차 그 중요성이 커지고 있다. 출처 : http://ko.wikipedia.org/wiki/MIME 더보기
Uri(Uniform Resource Identifier) URI (Uniform Resource Identifier)는 인터넷에 있는 자원을 나타내는 유일한 주소이다. URI의 존재는 인터넷에서 요구되는 기본조건으로서 인터넷 프로토콜에 항상 붙어다닌다. URI는 다음과 같은 요소로 구성된다. 프로토콜 (HTTP 혹은 FTP) + : + // + 호스트이름 + 주소 예: http://ko.wikipedia.org URI의 하위개념으로 URL, URN 이 있다. 출처 : http://ko.wikipedia.org/wiki/URI 더보기