자바 로 그림 의 네트워크 주소 가 올 바른 지 판단 합 니 다.

637 단어 자바
try{
            URL urlStr = new URL("http://img0.yododo.com/files/blog/2013-04-02/013DC8A780691101FF8080813DC7C25D.jpg");  
            HttpURLConnection connection = (HttpURLConnection) urlStr.openConnection();  
            int state = connection.getResponseCode();  
            if (state == 200) {
                System.out.println("====1====");
            } else {
                System.out.println("====2====");
            }
        }catch (Exception e) {
            // TODO: handle exception
        }

좋은 웹페이지 즐겨찾기