■ 연습문제 - EL_test.jsp > MODEL

본문 바로가기

사이트 내 전체검색

뒤로가기 MODEL

■ 연습문제 - EL_test.jsp

페이지 정보

작성자 관리자 작성일 21-07-15 20:03 조회 402 댓글 0

본문

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

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>


<h2>EL 리터럴 표현식</h2>

문자열 : ${"test" }<br>

문자열 : ${'test' }<br>

정수 : ${30 }<br>

소수점 : ${3.14 }<br>

Boolean : ${true }<br>

null : ${null }<br>

<!-- ${null }은 빈 문자열 ""로 출력된다. -->


<h2>EL 표현식으로 값 꺼내기</h2>

<%

int scores[] = new int[] {70,80,90,100};

pageContext.setAttribute("scores", new int[] {7,8,9,10});

request.setAttribute("scores", new int[] {17,18,19,20});

%>

<%=scores[0] %> / ${scores[0] } / ${pageScope.scores[0] } / ${requestScope.scores[0] }


</body>

</html>

추천0

댓글목록 0

등록된 댓글이 없습니다.


Copyright © dancePKT. All rights reserved.
PC 버전으로 보기