jsp學(xué)習(xí)之scriptlet的使用方法詳解
scriptlet的使用
- jsp頁面中分三種scriptlet:
- 第一種:<% %> 可以在里面寫java的代碼。定義java變量以及書寫java語句。
- 第二種:<%! %> 可以在里面定義全局變量以及方法,類。
- 第三種:<%=%> 用于打印變量或者輸出值。
<% %>的使用
<title>this is java page</title> <!--顯示注釋 注釋內(nèi)容 --> <% int x=10; int y=20; string str=request.getparameter("info"); out.println("<h1>"+str+"</h1> "); out.println("<h1>"+(x+1)+"</h1> "); out.println("<h2>"+y+"</h2> "); %>
<%! %>的使用
<title>this is java page</title> <!--顯示注釋 注釋內(nèi)容 --> <%! public static final int x=10; %> <%! public int add(int x,int y) { return x+y; } %> <%! class person { private string name; private int age; public person(string name,int age) { this.name=name; this.age=age; } public string tostring() { return "name="+name+",age="+age; } } %> <%! public int li=20; %> <% person p=new person("test",10); out.println(p); out.println(li); out.println(add(x,20)); %> <% int b=10; out.println(b); %>
<%= %>的使用
<title>this is java page</title> <!--顯示注釋 注釋內(nèi)容 --> <% int x=10; int y=20; string str=request.getparameter("info"); %> <%=x%> <%=y%> <%="strinsssa"%>
到此這篇關(guān)于jsp學(xué)習(xí)之scriptlet的使用方法詳解的文章就介紹到這了,更多相關(guān)jsp scriptlet 內(nèi)容請搜索碩編程以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持碩編程!
相關(guān)文章
- Servlet與JSP使用簡介及區(qū)別詳解
- jsp實(shí)現(xiàn)登錄界面
- jsp中文亂碼問題的簡單解決方法
- JSP實(shí)現(xiàn)簡單網(wǎng)頁計(jì)算器
- JSP動(dòng)態(tài)實(shí)現(xiàn)web網(wǎng)頁登陸和注冊功能
- 基于javaweb+jsp實(shí)現(xiàn)企業(yè)車輛管理系統(tǒng)
- SSM框架整合JSP中集成easyui前端ui項(xiàng)目開發(fā)示例詳解
- JSP實(shí)現(xiàn)文件上傳功能
- 基于jsp+mysql實(shí)現(xiàn)在線水果銷售商城系統(tǒng)
- jsp使用sessionScope獲取session案例詳解
- jsp session.setAttribute()和session.getAttribute()用法案例詳解
- jsp response.sendRedirect()用法詳解
- 一篇文章帶你了解JavaScript-語句
- 一篇文章帶你了解JavaScript-對象
- JSP之EL表達(dá)式基礎(chǔ)詳解
- jsp Response對象頁面重定向、時(shí)間的動(dòng)態(tài)顯示
- jsp的九大內(nèi)置對象深入講解
- jsp cookie+session實(shí)現(xiàn)簡易自動(dòng)登錄
- Jsp+Servlet實(shí)現(xiàn)簡單登錄注冊查詢
- 如何在jsp界面中插入圖片