이미지 파일 존재여부 체크함
getFileExist(String strUrl)
a.jsp
<%!
public String getFileExist(String strUrl) {
URL url = null;
URLConnection con = null;
String strImgPath = "";
try
{
url = new URL(strUrl);
con = url.openConnection();
java.net.HttpURLConnection http = (java.net.HttpURLConnection)con;
// 결과값 파일 있을때 200 리턴
// 결과값 파일 없을때 404 리턴
if(http.getResponseCode() == 404){
strImgPath = "";
}else if(http.getResponseCode() == 200){
strImgPath = strUrl;
}
}catch(Exception e){
//http.disconnect();
//out.println("File Not Found..."+e);
}
return strImgPath;
}
%>
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받고 있습니다.
이 포스팅은 제휴마케팅이 적용되어 작성자에게 일정액의 커미션이 제공될수 있습니다.
이 글을 공유하기