2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

JSP 暗黙オブジェクト

Last updated at Posted at 2016-02-10

スクリプトレットorスクリプト式の中には
暗黙オブジェクトという
宣言せずに利用できる特別なオブジェクトがある
スクリーンショット 2016-02-10 21.08.05.png
スクリーンショット 2016-02-10 21.19.03.png

javax.servlet.jsp.JspWriter

オブジェクトの名前: out

	<% String s2 = "Java"; %>
	<% out.print(s2); %>

▪️Test06Jsp.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset=UTF-8">
<title>JSPでHTMLを出力</title>
</head>
<body>
	<h1>JSPでHTMLを出力</h1>
	JSPでHTMLを出力テスト
	<br> Servletクラスより楽にHTMLを出力する
	<br> HTMLの中にJavaのコードを埋め込む
	<br>
	<font color="#f4a460">HTMLの中にJavaのコードを埋め込む</font>
	<br>
	<%!String s = "Hello";%>
	<%="スクリプト式を使うと"%>
	<br>
	<%="変数やメソッドの戻り値などを出力することが出来る→" + s%>
	<%--コメント--%>
	<!-- コメント -->
	<%
		String s2 = "Java";
	%>
	<%
		out.print(s2);
	%>
</body>
</html>

抜粋ページ
抜粋ページ

2
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?