CODEDRAGON ㆍDevelopment/Java
사용하는 함수에서 어떤 Exception이 발생가능한지 확인하기
· InputStream의 read()호출시 API의 throws항목 참조
· URLEncoder의 encode()호출시 API의 throws항목 참조
InputStream의 read()호출시 API의 throws항목 참조
[Essential Links]의 [Java APIs] 클릭
or
http://docs.oracle.com/javase/8/docs/api/
java.io >>
InputStream >>
"read(byte[] b)" 항목 클릭하여 세부내용을 이동 >>
"Throws:" 항목 참조
Throws: IOException - If the first byte cannot be read for any reason other than the end of the file, if the input stream has been closed, or if some other I/O error occurs. NullPointerException - if b is null.
|
URLEncoder의 encode()호출시 API의 throws항목 참조
Throws: UnsupportedEncodingException - If the named encoding is not supported
|
'Development > Java' 카테고리의 다른 글
swing (스윙) (0) | 2019.01.23 |
---|---|
Java - Interface default 메소드, static 메소드, default 메소드 형식 (0) | 2019.01.18 |
OpenJDK™ Source Releases (0) | 2018.12.31 |
Ex-인자 전달 방식(값 호출) (0) | 2018.12.24 |
자바 소켓(Socket), Socket 과 Sever Socket 통신 도식도, 절차 (0) | 2018.12.14 |