Servlet无法获取输入

问题描述 投票:0回答:3

我正在尝试创建一个程序,在该程序中我可以接受输入并使用servlet获取数字的平方根。我是一个初学者,所以我并不了解。问题是当我尝试我的代码时,它不起作用。这是代码:

MyServletDemo.java

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.lang.Math;

public class MyServletDemo extends HttpServlet {

     public void init() throws ServletException {
    }
   protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
   }
   public void doGet(HttpServletRequest request, 
      HttpServletResponse response)
      throws ServletException, IOException 
   {


      response.setContentType("text/html");
      String num2 = request.getParameter("num");
      int num3 = Integer.parseInt(num2); //This is where the error
      int numSqrt = Math.sqrt(num3);
      PrintWriter out = response.getWriter();
      out.println("<p> The sqrt is "+numSqrt+"</p>");
   }

}

index.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Get sqrt of num</title>
</head>
<body>


    <p>Num to find sqrt of: </p> <input type="text" name="num"/>


    <a href="welcome">Click to call Servlet</a>


</body>
</html>

我对xml不太了解,我在一个教程中找到了代码:web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>Find-the-sqrt-of-num</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>

<servlet>
<servlet-name>MyHttpServletDemo</servlet-name>
<servlet-class>MyServletDemo</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>MyHttpServletDemo</servlet-name>
<url-pattern>/welcome</url-pattern>
</servlet-mapping>

</web-app>

结果是:First this, then when you hit the link, you get :

This result

java xml jsp servlets
3个回答
0
投票

您将收到null错误,因为request.getParameter("num")为空。在您的jsp页面中,您永远不会向servlet发送任何值,即:通过编写<a href="welcome">Click to call Servlet</a>,这将带您进入servlet,但不会发送任何参数而不是像下面这样:

 <form method="get" action="Yourservletpage">
   <p>Num to find sqrt of: </p> <input type="text" name="num"/>
   <input type="submit" name="submit" value="submit" />
 </form>

0
投票

或尝试以下方法:

<a href="welcome?num=123">Click to call Servlet</a>

0
投票

[您需要做的是向Servlet而不是GET发出POST请求。这个想法是,如果您需要将信息传递到servlet,则是将信息发布到服务器。

如果未在jsp中指定方法类型,则默认为GET,而GET仅用于移动到网站的不同页面,而无需将信息传递/提交给服务器(servlet)

花时间了解Servlet的GET和POST请求的基本区别。

在代码中,在标记之后,您需要将所有标记与标记包装在一起,并将“ method”的属性设置为POST类型。在您的servlet中,使用doPost()方法代替doGet()。

您可以使用jsp和servlet在google上找到许多简单POST请求的示例。

© www.soinside.com 2019 - 2024. All rights reserved.