import java.net.URLConnection;
URLConnection conn = null;
url = new URL(http://www.aaaa.co.kr/img/wow.jpg);
conn = url.openConnection();
if(conn.getContentType().equals("image/jpg") && conn.getContentLength() > 0) {
//이미지 타입의 해당 파일이 존재 할 경우 처리
}else{
//파일이 존재하지 않을 경우 처리
}
728x90
'Carpe Programming > java' 카테고리의 다른 글
[Date] 특정 날짜의 요일 구하기. (0) | 2013.03.21 |
---|---|
[txt 파일 수정] 특정 문자가 포함된 열삭제 (0) | 2013.02.26 |
동일 서버에 있는 파일 다른 이름으로 복사 (0) | 2012.12.12 |
파일 다운로드 (0) | 2012.12.07 |
[vo toString] ToStringBuilder 클래스 (0) | 2012.06.28 |