1
我試圖解決問題,但我無法找到我的路out.My代碼表明我所請求的資源()不可用error.Can請人幫我出解決方案JSP程序
的index.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<form action="addition" method="post">
<input type="text" name="t1">
<input type="text" name="t2">
<input type="submit" value="add">
</form>
</body>
addition.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<BODY>
<%
PrintWriter pw=response.getWriter();
int no1 = Integer.parseInt(request.getParameter("t1"));
int no2 =Integer.parseInt(request.getParameter("t2"));
pw.print(no1+no2);
pw.close();
%>
</BODY>
我對JSP不熟悉,但這可能有關係嗎? - > http://stackoverflow.com/questions/14364449/jsp-the-requested-resource-is-not-available – nicolas 2014-10-01 22:09:36
歡迎來到社區! 「請求的資源()不可用」完整的錯誤描述?點擊提交按鈕後會發生嗎?你能提供關於你使用的框架的更多信息嗎?請注意,您的問題越清晰,您就越有可能得到答案。 – 2014-10-01 22:13:52