JSP實現計算機功能(網頁版)_JSP編程

來源:互聯網
上載者:User

jsp實現網頁計算機代碼如下:只有兩個jsp頁面
myCal.jsp如下:

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>">  <title>My JSP 'myCal.jsp' starting page</title>  <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page">   <!-- jsp頁面中不可以直接使用script --> <script language="javascript"> <!--     //寫一個函數判斷是否兩個數都有     function checkNum()     {       //判斷num1 num2是否為空白       if((form1.num1.value == "") || (form1.num2.value == ""))       {         window.alert("null,不可為空!");         return false;       }       //判斷是否是數字       if(Math.round(form1.num1.value) != form1.num1.value  && Math.round(form1.num2.value) != form1.num2.value)       {         window.alert("num1和num2不是一個數");         return false;       }       if(Math.round(form1.num1.value) != form1.num1.value)       {         window.alert("num1不是一個數");         return false;       }       if(Math.round(form1.num2.value) != form1.num2.value)       {         window.alert("num2不是一個數");         return false;       }            }      -->   </script> </head> <body>    <form name="form1" action="calculator/myResult.jsp" method="post">     請輸入第一個數:<input type="text" name="num1">      <select name="flag">       <option value=+>+</option>       <option value=->-</option>       <option value=*>*</option>       <option value=/>/</option>     </select>      請輸入第二個數:<input type="text" name="num2">      <input type="submit" value="計算" onclick="return checkNum();">   </form>  </body> </html> 

myResult.jsp如下:

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html>  <head>   <base href="<%=basePath%>">      <title>My JSP 'myResult.jsp' starting page</title>      <meta http-equiv="pragma" content="no-cache">   <meta http-equiv="cache-control" content="no-cache">   <meta http-equiv="expires" content="0">     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">   <meta http-equiv="description" content="This is my page">   <!--   <link rel="stylesheet" type="text/css" href="styles.css">   -->   </head>    <body>  <%   //第1步接收到 第1個數   String s_num1 = request.getParameter("num1");   //第2步接收到 第2個數   String s_num2 = request.getParameter("num2");   //第3步接收到 運算子   String flag = request.getParameter("flag");   //第4步 計算      int num1 = Integer.parseInt(s_num1);   int num2 = Integer.parseInt(s_num2);   int result = 0;   if(flag.equals("+"))   {     result = num1+num2;   }   else if(flag.equals("-"))   {     result = num1-num2;   }   else if(flag.equals("*"))   {     result = num1*num2;   }   else if(flag.equals("/"))   {     result = num1/num2;   }   //第5步   out.println("結果是:"+result);   %>      </body> </html>

雖然過程很簡單但是有幾個值得學習的地方:
如何判斷輸入的資料是不是數字:使用Math.round(form1.num1.value) != form1.num1.value   來判斷;
如何擷取操作值:設定name屬性 flag實現。

希望本文所述對大家學習JSP編程有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.