안드로이드 플랫폼을 통해 어플 개발중입니다만..
파싱과정에서 문제가 생겨 글을 남깁니다.
소스코드는 여타 오픈 소스들을 통해 오류 없이 컴파일도 되며, 제리코 라이브러리도 추가한 상태입니다.
그런데도 에뮬레이터에서 반응이 없어서 임시 문자열을 주고 토스트 위치를 움직여가며 어디까지 프로그램이 돌아가는지 살펴보았더니

Source source = new Source. . . . . .
이부분 객체 생성하는 부분에 문제가 있는 것 같습니다.
아무래도 예외 발생으로 JVM으로 던져버리는것같은데.
어떻게 해야할까요?
조언 부탁드립니다.

아래는 소스코드 일부입니다.

private void foodList(String url)throws MalformedURLException,IOException{
     Source source = new Source(new URL("http://pig3gyub.cafe24.com/JspFood/te.jsp?fname= " +url));
     
     source.fullSequentialParse();
     foodItem foodItems = new foodItem();
     
     List rootList = source.getAllElements(HTMLElementName.INPUT);
     
     for(Iterator it = rootList.iterator(); it.hasNext();){
      
      Element linkEmlElement = (Element) it.next();
      String name = linkEmlElement.getAttributeValue("name");
      String valueList = linkEmlElement.getAttributeValue("value");
.
.
.
.
}