フォーム要素から送られた情報は、requestオブジェクトで取得できますが、取得するのは文字列データです。
String response = request.getParameter(“フォームから送られたname値”);
そこで、文字列を数値データに変換するためにIntegerクラスのparseIntメソッドを使います。
整数 = Integer.parseInt(response);
フォーム要素から送られた情報は、requestオブジェクトで取得できますが、取得するのは文字列データです。
String response = request.getParameter(“フォームから送られたname値”);
そこで、文字列を数値データに変換するためにIntegerクラスのparseIntメソッドを使います。
整数 = Integer.parseInt(response);