I download the HTMLparser zip file.
After unzip the HTMLparser zip file,I get the "org" folder.
But I cannot find the Tag.class file in the folder. ~\org.htmlparser.tags\
This fault make the following code unwork.
import org.htmlparser.tags.Tag;
Did I miss something important?
Thank you.
May god bless you all.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In recent versions, the Tag class is now an interface org.htmlparser.Tag, and the base implementation is in the TagNode class org.htmlparser.nodes.TagNode with concrete implementations in the tags package org.htmlparser.tags.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
regards:
I download the HTMLparser zip file.
After unzip the HTMLparser zip file,I get the "org" folder.
But I cannot find the Tag.class file in the folder. ~\org.htmlparser.tags\
This fault make the following code unwork.
import org.htmlparser.tags.Tag;
Did I miss something important?
Thank you.
May god bless you all.
In recent versions, the Tag class is now an interface org.htmlparser.Tag, and the base implementation is in the TagNode class org.htmlparser.nodes.TagNode with concrete implementations in the tags package org.htmlparser.tags.