<Context path="/nihongo33" docBase="webapps/nihongo33" debug="0" reloadable="true"> <DecodeInterceptor defaultEncoding="Shift_JIS" useSessionEncoding="false" /></Context>
<html> <head> <meta http-equiv="content-type" content="text/html; charset=Shift_JIS"> <title>Tomcat3.3</title></head> <body> <form action="ja33.jsp" method="get"> 名前(日本語で): <input type="text" name="name" value="日本語"> <input type="submit" value="送信"> </form> </body></html>
<%@ page contentType="text/html; charset=Shift_JIS" %><% String name = 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>