정규 표현 식 JSP 인 스 턴 스
3154 단어 정규 표현 식
<%@ 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>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
awk 상용 명령awk 는 모든 입력 줄 을 하나의 기록 으로 인식 하고 그 줄 의 모든 단어 도 메 인 을 하나의 필드 로 인식 합 니 다. ARGC 명령 줄 에 awk 스 크 립 트 가 들 어 오 는 매개...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.