JSP基本語法與簡單表單處理

字號:


    jsp語法:
    jsp指令元素
    (1)include:導入其它文件夾
    (2)page:
    language:用什么語言,只能為JAVA
    contentType:MIME類型
    import:導入java包
    (3)taglib:自定義標簽庫
    jsp常用標準元素
    (1)jsp:forward:跳轉(zhuǎn)到其它頁面
    (2)jsp:include:插入其它文件 eg:
    (3)jsp:plugin:插入applet小程序
    (4)jsp:param:參數(shù)傳值
    jsp內(nèi)置對象
    (1)request:常用方法
    getParameter():提取表單元素的值
    getRemoteAddr():獲取客戶端IP值
    (2)response:
    sendRedirect():重定向到其它網(wǎng)頁
    setcontentType();設置MIME值
    (3)out:向網(wǎng)頁輸出
    (4)application
    setAttribute(String,Object)把變量的值保存在application中;
    getAttribute(String)獲取保存在applicaion中的值
    removeAttribute(String)刪除保存在application中的值
    (5)session
    setAttribute(String,Object)把變量的值保存在session中;
    getAttribute(String)獲取保存在session中的值
    removeAttribute(String)刪除保存在
    getID:獲取session編號
    jsp簡單表單處理
    < contentType="text/html;charset=gb2312"%>
    <language="java" %>
    <html>
    <head><title>表單處理</title></head>
    <form name="frm" method="GET" action="ch-show.jsp">
    <table boder=0>
    <tr><td>用戶名:</td><td><input type=text name="Tname"></td></tr>
    <tr><td>密碼:</td><td><input type=password name="Tpass"></td></tr>
    <tr><td>性別:</td>
    <td><input type=radio name="Tsex" value="男" checked>男
    <input type=radio name="Tsex" value="女">女</td>
    </tr>
    <tr><td>愛好:</td>
    <td><input type=checkbox name=Tch1 value="體育">體育
    <input type=checkbox name=Tch2 value="美術(shù)">美術(shù)
    <input type=checkbox name=Tch3 value="音樂">音樂</td>
    </tr>
    <tr><td>專業(yè):</td><td><select name=Ty>
    <option value="計算機">計算機</option>
    <option value="文學">文學</option>
    <option value="數(shù)學">數(shù)學</option>
    </select>
    <tr><td>留言:</td><td><textarea name=Tl rows=5 cols=20></textarea></td></tr>
    <tr><td><input type=submit value="用戶信息"></td></tr>
    </table></form>
    <%
    String Tname=request.getParameter("Tname");
    String Tpass=request.getParameter("Tpass");
    String Tsex=request.getParameter("Tsex");
    String Tlove1=request.getParameter("Tch1");
    String Tlove2=request.getParameter("Tch2");
    String Tlove3=request.getParameter("Tch3");
    String Ty=request.getParameter("Ty");
    String Tl=request.getParameter("Tl");
    byte b1[]=Tsex.getBytes("ISO-8859-1");
    Tsex=new String(b1);
    if(Tlove1==null)
    {
    Tlove1="";
    }
    else
    {
    byte b2[]=Tlove1.getBytes("ISO-8859-1");
    Tlove1=new String(b2);
    }
    if(Ty==null)
    {
    Ty="";
    }
    else
    {
    byte b5[]=Ty.getBytes("ISO-8859-1");
    Ty=new String(b5);
    }
    if(Tlove2==null)
    {
    Tlove2="";
    }
    else
    {
    byte b3[]=Tlove2.getBytes("ISO-8859-1");
    Tlove2=new String(b3);
    }
    if(Tlove3==null)
    {
    Tlove3="";
    }
    else
    {
    byte b4[]=Tlove3.getBytes("ISO-8859-1");
    Tlove3=new String(b4);
    }
    out.print("你的信息是:"+"<br>");
    out.print("用戶名"+Tname+"<br>");
    out.print("密碼"+Tname+"<br>");
    out.print("性別"+Tsex+"<br>");
    out.print("愛好"+Tlove1+Tlove2+Tlove3+"<br>");
    out.print("專業(yè)"+Ty+"<br>");
    out.print("留言"+Tl+"<br>");
    %>
    </body>