HtmlParser给我们提供的Tag比较多.但是像这样的网页好像都是不行哦.因为HtmlParser只提供到  TableColumn, TableHeader, TableRow, TableTag, 没有直接提供tr,td这种一看就明白的Tag,那我们如何解决这个问题.方法就是继承HtmlParser的Tag.呵呵.其实继承他很简单.看代码.

public class TrTag extends CompositeTag {
    
/**
     * The set of names handled by this tag.
     
*/

    
private static final String[] mIds = new String[] "TR" };

    
/**
     * The set of end tag names that indicate the end of this tag.
     
*/

    
private static final String[] mEndTagEnders = new String[] "TABLE" };

    
/**
     * Create a new div tag.
     
*/

    
public TrTag() {
    }


    
/**
     * Return the set of names handled by this tag.
     * 
     * 
@return The names to be matched that create tags of this type.
     
*/

    
public String[] getIds() {
        
return (mIds);
    }


    
/**
     * Return the set of end tag names that cause this tag to finish.
     * 
     * 
@return The names of following end tags that stop further scanning.
     
*/

    
public String[] getEndTagEnders() {
        
return (mEndTagEnders);
    }

}

呵呵.有了这一招,对待这样的NBA网页易如反掌了.当然了对待其他标签也一样的做法.

==================说明分隔线===========
说的很简单.请大家谅解.:)