2007年10月16日火曜日

宣言部

宣言部で変数の宣言などを行います。
宣言部の変数は .java ファイルではインスタンス変数またはクラス変数となります。

<サンプル>
<html>
<body>
<%! int x; %>
<% x = 100; %>
The number is <%=x%>
</body>
</html>

<出力結果>
The number is 100

宣言部には jspInit と jspDestroy メソッドを記述できます。
jspInit と jspDestroy メソッドは .java ファイルにそのまま変換されます。

<サンプル>
<html>
<body>
<%! 
int x; 
public void jspInit() {
    x = 100;
}
%>
The number is <%=x%>
</body>
</html>

<出力結果>
The number is 100

0 件のコメント: