在目錄下添加名爲hello.jsp的文件html
代碼就是很簡單的輸出helloworld瀏覽器
1: <html>2: <head>3: <title>JavaWeb學習</title>4: </head>5: <body>6: <%
7: out.print("<h1>Hello World!!!</h1>");8: %>9: </body>10: </html>11:
將程序保存在虛擬目錄下,並經過瀏覽器輸入地址jsp
http://localhost/gb//hello.jsppost
運行結果以下學習
能夠發現,該JSP程序主要仍是由HTML代碼組成的。ui
因此,所得的JSP程序代碼開發就是指在HTML中嵌入大量的Java代碼spa
例4.4.net
編寫表單,輸入內容——input.htmcode
具體代碼以下orm
1: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />2: <html>3: <head>4: <title>Java學習</title>5: </head>6: <body>7: <center>8: <form action="input.jsp" method="post">9: 請輸入要顯示的內容:<input type="text" name="info" >10: <input type="submit" value="顯示" />11: </form>12: </center>13: </body>14: </html>
運行結果以下
例4.5
接收輸入表單參數並顯示——input.jsp
1:2: <html>3: <head>4: <title>JavaWeb學習</title>5: </head>6: <body>7: <%8: String str=request.getParameter("info"); //接收表單輸入的內容9: out.print("<h1>"+str+"</h1>"); //輸入信息10: %>11: </body>12: </html>
運行結果以下
表單提交後,會將表單中的內容提交給action所指向的路徑,而input.jsp將直接輸出表單的輸入內容。