JSP中正則表達(dá)式用法實例
本文實例講述了JSP中正則表達(dá)式用法。分享給大家供大家參考,具體如下:
<%@ page language="java" import="java.util.*,cn.com.Person,cn.com.Adddress" 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 'El.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>
<%
String data="assd";
request.setAttribute("data", data);
%>
<!-- 正則表達(dá)式,對于 Request傳過來的數(shù)據(jù)可以直接如下顯示
相當(dāng)于:pageContext.findAttribute("data");
這是一般的方式
-->
${data }
<br/>
<%
Person p=new Person();
p.setName("name");
request.setAttribute("person", p);
%>
<!-- 反射name屬性獲取這個值輸出
數(shù)據(jù)通過JAVABean里傳過來的如下:
-->
${person.name}
<br/>
<%
Person p2=new Person();
Adddress add=new Adddress();
add.setCity("NewYork");
p2.setAddress(add);
request.setAttribute("p2", p2);
%>
<!-- 下面的是定義一個Person的類和一個Adddress的類
Person中私有屬性:private Adddress address;
要獲取他的地址可以如下的方式來完成
數(shù)據(jù)復(fù)雜的bean里面帶過來的如下:
-->
${p2.address.city}
<br/>
<%
ArrayList list=new ArrayList();
list.add(new Person("wy"));
list.add(new Person("wyy"));
list.add(new Person("wyyy"));
request.setAttribute("list", list);
%>
<!-- 集合帶過來的怎么獲取數(shù)據(jù)呢? -->
${list[1].name }
<br/>
<%
Map map=new HashMap();
map.put("1", new Person("aaaa"));
map.put("b", new Person("bbbb"));
map.put("c", new Person("cccc"));
map.put("d", new Person("dddd"));
request.setAttribute("map", map);
%>
<!--
Map集合帶過來的怎么獲取數(shù)據(jù)呢?
map集合的數(shù)據(jù)存放的時候id一般不要用數(shù)字:會出現(xiàn)500錯誤
但是用數(shù)字的話獲取方式如第二條
.號取不出來就用中括號[]
-->
${map.b.name}
${map['1'].name }
<br/>
<!-- 獲取當(dāng)前的web項目名 -->
${pageContext.request.contextPath}
<a href="${pageContext.request.contextPath}/demo1.jsp" >點</a>
</body>
</html>
PS:這里再為大家提供2款非常方便的正則表達(dá)式工具供大家參考使用:
JavaScript正則表達(dá)式在線測試工具:
http://tools.jb51.net/regex/javascript
正則表達(dá)式在線生成工具:
http://tools.jb51.net/regex/create_reg
希望本文所述對大家JSP程序設(shè)計有所幫助。
相關(guān)文章
JSP程序運行原理、文檔結(jié)構(gòu)及簡單輸入輸出實例分析
這篇文章主要介紹了JSP程序運行原理、文檔結(jié)構(gòu)及簡單輸入輸出,以完整實例形式較為詳細(xì)的分析了JSP程序的運行原理、文檔結(jié)構(gòu)及簡單輸入輸出詳細(xì)技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-09-09
關(guān)于request.getHeader("Referer")的問題探討
request.getHeader("Referer")獲取上次訪問的URL鏈接,在什么情況下他會出現(xiàn)問題,下面為大家分享下,感興趣的朋友不要錯過2013-10-10
搭建java WEB開發(fā)環(huán)境和應(yīng)用
使用Tomcat服務(wù)器,使用DBCP數(shù)據(jù)源搭建Web開發(fā)環(huán)境2009-06-06

