Source source = new Source(new InputStreamReader(html1,
        "utf-8"));

        source.fullSequentialParse();
        Element table = (Element) source.getAllElements(
         HTMLElementName.TABLE).get(tablenum);

 

이런식으로 원래 파싱데이터중에 몇번째 테이블을 가져올려고했는데

가져오는 페이지가 너무많아서 테이블 갯수가 조금씩 다 틀리더라구여

 

 

<table cellpadding="0" cellspacing="0" style="" class="KList_ListViewControl_listtable">
위에 테이블만 가져오고 싶은데요

class에있는 KList_ListViewControl_listtable 데이터는 오직 하나의 테이블에서만 존재하는데

어떤식으로 해야 여러개의 테이블중 제가 원하는 테이블만 가져올 수 있을까요?

 

 

도와주세요 고수님들!!!!!!!!!!