Hello,
I tried posting this yesterday, but I don't see it, so I will post
again. Forgive me if you get two. I am looking for an HTML parser that would
allow me to get the name/value of check boxes as well as the associated
labels. I want to GET a form, process it, and POST the desired results.
Thanks,
Adam
klynn47@comcast.net - 13 Dec 2005 21:02 GMT
Have you used a servlet? It has built-in capabilities for doing that.
Paulus de Boska - 13 Dec 2005 21:20 GMT
Perhaps this will point you in the right direction :
http://javalessons.com/cgi-bin/fun/java-tutorials-main.cgi?ses=ao789
Lookup Servlets - Form in the index .
Paul H.
SEMM
Oliver Wong - 13 Dec 2005 21:34 GMT
> Hello,
>
[quoted text clipped - 3 lines]
> allow me to get the name/value of check boxes as well as the associated
> labels. I want to GET a form, process it, and POST the desired results.
"GET" has a special meaning in the HTTP protocol, so I'm not sure if you
mean you want to receive parameters via the GET method (which doesn't
involve parsing HTML at all), or if you want to read a local HTML file from
disk.
- Oliver