code035.jsp
1<%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8" errorPage="code036.jsp" %> 3<!DOCTYPE html> 4<html> 5<head> 6<meta charset="UTF-8"> 7<title>使用exception对象获取异常信息</title> 8</head> 9<body> 10<% 11request.setAttribute("price", "12.5元"); 12float price = Float.parseFloat(request.getAttribute("price").toString()); 13 14 15%> 16</body> 17</html>