第四章 Tomcat服務器的安裝及配置2

4.4編寫第一個JSP文件

在目錄下添加名爲hello.jsp的文件html

image

代碼就是很簡單的輸出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

運行結果以下學習

image

能夠發現,該JSP程序主要仍是由HTML代碼組成的。ui

因此,所得的JSP程序代碼開發就是指在HTML中嵌入大量的Java代碼spa

4.5交互性

例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>

運行結果以下

image

例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>

運行結果以下

image

image

表單提交後,會將表單中的內容提交給action所指向的路徑,而input.jsp將直接輸出表單的輸入內容。

相關文章
相關標籤/搜索