<?xml version="1.0" encoding="Shift_JIS" ?>
<xsp:page
xmlns:xsp="http://apache.org/xsp"
xmlns:xsp-request="http://apache.org/xsp/request/2.0">
<hello>
こんにちは、
<xsp:logic>
String a = request.getParameter("username");
String result = (a == null) ? "***" :
new String(a.getBytes("8859_1"), "EucJP");
</xsp:logic>
<xsp:expr>result</xsp:expr>
さん。
</hello>
</xsp:page>
|