JSPAdvertisementoutオブジェクト
javax.servlet.jsp.JspWriter のオブジェクト。
outオブジェクトの利用
<%@ page contentType="text/html; charset=Shift_JIS" %>
<meta http-equiv="Content-Type" content="text/html;charset=Shift_JIS">
<html lang="ja">
<head>
<title>テスト</title>
</head>
<body>
<%
out.print("out.print()");
out.println("out.println()");
out.println("out.println()");
out.newLine();
%>
</body>
</html>
実行結果
out.print()out.println() out.println()実行結果(ソースコード) <meta http-equiv="Content-Type" content="text/html;charset=Shift_JIS"> <html lang="ja"> <head> <title>テスト</title> </head> <body> out.print()out.println() out.println() </body> </html>out.println()による改行とout.newLine()による改行が出力されている。 |