<html><head> <meta http-equiv="content-type" content="text/html; charset=Shift_JIS"> <title>Tomcat3.2.4</title></head><body> <form action="ja324.jsp" method="get"> 名前(日本語で): <input type="text" name="name" value="日本語"> <input type="submit" value="送信"></form></body></html>
<%@ page contentType="text/html; charset=Shift_JIS" %><% Encoding sjis = Encoding.getEncoding("Shift_JIS"); //文字コード変換 String name = sjis.getString(request.getParameter("name")); //コンソールに出力する System.out.println("name: " + name);%><html><head> <meta http-equiv="content-type" content="text/html; charset=Shift_JIS"></head><body> <%-- ブラウザに出力する --%> 名前: <b><%= name %></b></body></html>
+ webapps/ + nihongo324/ index.html ja324.jsp + WEB-INF/ web.xml + classes/ Encoding.java Encoding.class