Getting Started: HTML forms interact with Java background (check box submission)

Source: Internet
Author: User
Tags html form

Just give some of the key code:

HTML Form code:

<formAction= "Javaformtest"Method= "POST"name= "Form">  <P>Clear Enter user name:<inputtype= "text"name= "username"/><BR/>Please enter user password:<inputtype= "Password"name= "Password" /><BR/>  </P>Please choose your course<BR/>  <P>     <inputtype= "checkbox"name= "checkbox"value= "Football" />Football<inputtype= "checkbox"name= "checkbox"value= "Basketball" />Basketball<inputtype= "checkbox"name= "checkbox"value= "Table tennis" />Table Tennis<inputtype= "checkbox"name= "checkbox"value= "Volleyball" />Volleyball Ball</P>     <inputtype= "button"name= "but"onclick= "Submit ()"value= "Submit" /></form>

Javaformtest.java Handler Dopost section:

protected voidDoPost (httpservletrequest request, httpservletresponse response)throwsservletexception, IOException {request.setcharacterencoding ("Utf-8"); Response.setcontenttype ("Text/html;charset=utf-8"); PrintWriter out=Response.getwriter (); String username= Request.getparameter ("username"); String Password= Request.getparameter ("Password"); String[] List= Request.getparametervalues ("checkbox"); if(Username.isempty ()) Out.println ("Name is empty!<br/>"); ElseOut.println ("Name:" + username + "<br/>"); if(Password.isempty ()) Out.println ("Password is empty!<br/>"); ElseOut.println ("Password:" + password + "<br/>"); if(List = =NULL) Out.println ("None List"); Else{out.println ("List: <br/>");  for(inti=0;i<list.length;i++) {out.println ("The" + (i+1) + "course is:" + list[i]+ "<br/>"); }        }    }

Getting Started: HTML forms interact with Java background (check box submission)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.