目次へ

解答例 - 実習課題1 - 9.ウェルカムページとエラーページ

(実習課題1)

ディレクトリの内容を表示するJSPページを作成しなさい。またそのJSPページを任意のWebアプリケーションの、ウェルカムページとして設定しなさい。

解答例

<%@page contentType="text/html; charset=Shift_JIS" %>
<%@page import="java.io.File" %>
<%
  String path = pageContext.getServletContext().getRealPath(request.getServletPath());
  File file = new File(new File(path).getParent());
%>
<html>
<head>
<title>Servlet 9章実習課題 1</title>
</head>
<body>
<h1>WelcomePage</h1>
このページは Servlet 9章実習課題 1で作った Welcome ページです。<br>
<hr>
<h2>ディレクトリ構成</h2>
<%= file.getPath() %>
<hr>
<%
  String[] list = file.list();
  for(int i = 0; i < list.length; i++){
 %><%= list[i] %><br>
<%
  }
 %>
</body>
</html>
<?xml version="1.0" encoding="Shift_JIS"?>
<!DOCTYPE web-app
  PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
  "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>

  <welcome-file-list>
    <welcome-file>list.jsp</welcome-file>
  </welcome-file-list>

</web-app>

↑このページの先頭へ

こちらもチェック!

PR
  • XMLDB.jp