I use htmlparser to parse my html page, this html have a textarea field , when the field not value just like
<textarea name = "a" ></textarea>
parser can correct parse .
but the field with value , just like
<textarea name = "a" >value</textarea>
surprise!
parser can't corrent parse .
can't corrent mean , when i use below expression
Parser parser = new Parser(uri);
NodeIterator n_Iterator = parser.elements();
i can't get TextareaTag object from n_Iterator , so i can't handle the field.
help me.!!!!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I use htmlparser to parse my html page, this html have a textarea field , when the field not value just like
<textarea name = "a" ></textarea>
parser can correct parse .
but the field with value , just like
<textarea name = "a" >value</textarea>
surprise!
parser can't corrent parse .
can't corrent mean , when i use below expression
Parser parser = new Parser(uri);
NodeIterator n_Iterator = parser.elements();
i can't get TextareaTag object from n_Iterator , so i can't handle the field.
help me.!!!!
question is over
thanks everyone