相思资源网 Design By www.200059.com

本文实例讲述了JSP中正则表达式用法。分享给大家供大家参考,具体如下:

<%@ 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);
 %>
 <!-- 正则表达式,对于 Request传过来的数据可以直接如下显示
   相当于:pageContext.findAttribute("data");
   这是一般的方式
  -->
 ${data }
 <br/>
 <%
  Person p=new Person();
  p.setName("name");
  request.setAttribute("person", p); 
 %>
 <!-- 反射name属性获取这个值输出 
  数据通过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;
  要获取他的地址可以如下的方式来完成
  数据复杂的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);
 %>
 <!-- 集合带过来的怎么获取数据呢? -->
 ${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集合带过来的怎么获取数据呢?
   map集合的数据存放的时候id一般不要用数字:会出现500错误
   但是用数字的话获取方式如第二条
   .号取不出来就用中括号[]
 -->
 ${map.b.name}
 ${map['1'].name }
 <br/>
 <!-- 获取当前的web项目名 -->
 ${pageContext.request.contextPath}
  <a href="${pageContext.request.contextPath}/demo1.jsp" >点</a>
 </body>
</html>

PS:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:

JavaScript正则表达式在线测试工具:
http://tools.jb51.net/regex/javascript

正则表达式在线生成工具:
http://tools.jb51.net/regex/create_reg

希望本文所述对大家JSP程序设计有所帮助。

标签:
JSP,正则表达式

相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com

评论“JSP中正则表达式用法实例”

暂无JSP中正则表达式用法实例的评论...

P70系列延期,华为新旗舰将在下月发布

3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。

而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?

根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。