Jsp基礎文法

來源:互聯網
上載者:User

標籤:ons   ram   檔案   private   justify   跳轉   target   png   pos   

jsp的基礎文法學習   

page指令介紹:

Language:用來定義要使用的指令碼語言; language="java"   定義使用的指令碼語言是java。

contentType:定義JSP字元的編碼和頁面響應的MIME類型; MIME類型 ------>MIME (Multipurpose Internet Mail Extensions) 是描述訊息內容類型的網際網路標準(下面的類型是text/html;字元編碼是 utf-8)。

pageEncoding:JSP頁面的字元編碼; 下面的字元編碼是utf-8.

<%@ page language="java" contentType="text/html; charset=utf-8"

pageEncoding="utf-8"%>

scriptlet標籤:

通過scriptlet標籤我們可以在jsp裡嵌入java代碼;

第一種:<%!%>   我們可以在裡面定義全域變數、方法、類;

第二種:<% %>   我們可以在裡面定義全域變數、編寫語句;

第三種:<%= %>  我們在裡面輸出一個變數或者一個具體內容;

 例如代碼:

<%! 

     String str="全域變數";   

  public void fun(){

      System.out.println("全域方法");
}
public class A{
  private int b=1;
  public void fun1(){
    System.out.println("全域類");
  }
}
%>
<%
int a=1234;
String b="java";
out.println(b+a+"局部變數");
%>
<%=b %>

Jsp注釋:

<!-- -->Html注釋  用戶端可見

<%-- --%>Jsp注釋 用戶端不可見

//java單行注釋 不可見

/*   */java多行注釋 不可見

代碼:

<h1>jsp注釋</h1>
<!-- HTML注釋 用戶端可見 -->
<%--jsp注釋 用戶端不可見 --%>
<%

int temp=1;//java單行注釋
/* int c=2;
int d=3; java多行注釋
*/
%>

JSP包含指令:

<%@ include file=要包含的檔案 %>靜態包含 先包含,後編譯處理;

<jsp:include page=要包含的檔案> 動態包含 先編譯處理,後包含;

以後我們用動態包含;

 代碼:

<h2>靜態包含</h2>
<%@include file="common/head.html"%>
<p>content內容!!</p>
<%@include file="common/footer.jsp" %>

<h2>動態包含</h2>
<jsp:include page="common/head.html"></jsp:include>
<p>content</p>
<jsp:include page="common/footer.jsp"></jsp:include>

 Jsp跳轉指令:

<jsp:forward>

<jsp:param value=”” name=””>

</jsp:forward>

伺服器內部跳轉,可帶參數;

<jsp:param value=“” name=""> 

 

代碼:

forward.jsp

<jsp:forward page="target.jsp">
<jsp:param value="java" name="username"/>
<jsp:param value="123456" name="password"/>
</jsp:forward>

target.jsp

<h2>伺服器內部跳轉( 目標檔案 )</h2>
<p>username:<%=request.getParameter("username") %></p>
<p>password:<%=request.getParameter("password") %></p>

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.