email 보내기

Java 2011. 11. 26. 20:29
0.적절한 gmail 계정이 있어야 한다.

1.JavaMail 설치
   http://www.oracle.com/technetwork/java/index-138643.html

2.소스는 첨부파일에~

'Java' 카테고리의 다른 글

JDBC connector의 thread-safe 문제  (0) 2011.11.26
floating point bug  (0) 2011.11.26
Exception, RuntimeException  (0) 2011.11.26
bitmap class 구현  (0) 2011.11.26
MD5 구현(C++, Java, Js)  (0) 2011.11.26
Posted by 휘사마
,

floating point bug

Java 2011. 11. 26. 20:28
우와 진짜 JVM 무한루프 도네.. -_-;

Double.parseDouble("2.2250738585072012e-308"); 

한번 해보시라..



http://developers.slashdot.org/story/11/02/09/025237/Java-Floating-Point-Bug-Can-Lock-Up-Servers

'Java' 카테고리의 다른 글

JDBC connector의 thread-safe 문제  (0) 2011.11.26
email 보내기  (0) 2011.11.26
Exception, RuntimeException  (0) 2011.11.26
bitmap class 구현  (0) 2011.11.26
MD5 구현(C++, Java, Js)  (0) 2011.11.26
Posted by 휘사마
,

Exception, RuntimeException

Java 2011. 11. 26. 20:27
RuntimeException 을 상속받아 만든 클래스 ( 혹은 그 자신) 은 

의무적으로 catch 하지 않아도 된다.

(C#도 저거랑 똑같은 이름으로 있는듯?)

http://download.oracle.com/javase/1.4.2/docs/api/java/lang/RuntimeException.html

public class RuntimeException
extends Exception
RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Java Virtual Machine.
A method is not required to declare in its throws clause any subclasses of RuntimeException that might be thrown during the execution of the method but not caught.

'Java' 카테고리의 다른 글

email 보내기  (0) 2011.11.26
floating point bug  (0) 2011.11.26
bitmap class 구현  (0) 2011.11.26
MD5 구현(C++, Java, Js)  (0) 2011.11.26
stack allocation  (0) 2011.11.26
Posted by 휘사마
,