解决方案为jsp程序

时间:2014-10-01 22:03:50

标签: 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>

1 个答案:

答案 0 :(得分:0)

在表单中,您必须指定要尝试发布表单 addition.jsp 的jsp。对于你的代码我假设你想把数据发送到addition.jsp,如果你只是添加&#34;添加&#34;您要求的资源不存在,同时请记住url addition.jsp必须与index.jsp处于同一级别,否则提供add.jsp的相对路径

<form action="addition.jsp" method="post">