Hey guys,
I'm trying to write a java program to parse a character string as received from a web browser into its component parts. The url I want to parse is a simple form with name, age, etc. I cant write the parser to pull out the info in the forms or get strings to show the inputted data. Here is the source code of the site I want to use.
<HTML>
<HEAD>
<TITLE> STUDENT BIO </TITLE>
</HEAD>
<BODY>
<H3> BIO </H3>
<OL>
<LI>From Dentech.
<LI>Major Mechanical Engineering.
<LI>Plans to work for a robotics firm.
<LI>Future goals to build a robot.
</OL>
<UL>
<LI>Favorite game Persona 3 FES.
<LI>Favorite TV show Gundam SEED Destiny.
<LI>Hobbies building gundam models.
</UL>
</BODY>
</HTML>