6

下面的代码来自一本书,所以不会出错。但我不知道如何解决下面的错误。删除方法doGet()时,同样的错误!

“HTTP 状态 405 - 此 URL 不支持 HTTP 方法 GET”

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class PDFServlet extends HttpServlet{
private static final long serialVersionUID = 1L;
@Override 
protected void doGet(HttpServletRequest request,HttpServletResponse response) 
throws IOException,ServletException{
    this.doPost(request,response);
}
@Override 
protected void doPost(HttpServletRequest request,HttpServletResponse response) 
                                   throws IOException,ServletException{
    response.setContentType("application/pdf");
    ServletOutputStream out=response.getOutputStream();
    File pdf=null;
    BufferedInputStream buf=null;
    try{
        pdf=new File("C:\\Users\\lk\\Desktop\\Desktop\\ example.pdf");
        response.setContentLength((int)pdf.length());
        FileInputStream input=new FileInputStream(pdf);
        buf=new BufferedInputStream(input);
        int readBytes=0;
        while((readBytes=buf.read())!=-1)    out.write(readBytes);
    }catch(IOException e){
        System.out.println("file not found!");
    }finally{
        if(out!=null) out.close();
        if(buf!=null) buf.close();
    }
}
}

网页.xml:

<?xml version="1.0" encoding="UTF-8"?>
-<web-app xsi:.........." version="2.5"> 
-<servlet> 
<description>This is the description of my Java EE component</description> 
<display-name>This is the display name of my Java EE component</display-name> 
<servlet-name>PDFServlet</servlet-name> 
<servlet-class>PDFServlet</servlet-class> 
</servlet> 
-<servlet-mapping> 
<servlet-name>PDFServlet</servlet-name> 
<url-pattern>/PDFServlet</url-pattern> 
</servlet-mapping> 
-<welcome-file-list> 
<welcome-file>index.jsp</welcome-file> 
</welcome-file-list> 
-<login-config> 
<auth-method>BASIC</auth-method> 
</login-config> 
</web-app>
4

7 回答 7

13

我刚才也有同样的问题。“HTTP 状态 405 - 此 URL 不支持 HTTP 方法 GET”。我的解决方案如下:

public abstract class Servlet extends HttpServlet {

    protected HttpServletRequest req;
    protected HttpServletResponse resp;

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        this.req = req;
        this.resp = resp;
        this.requestManager();
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        this.req = req;
        this.resp = resp;
        this.requestManager();

    }

    protected abstract void requestManager() throws IOException;
}

我的构造函数有问题,因为我正在调用超级的“doGet”

于 2013-05-28T18:20:11.137 回答
10

Servlet 代码似乎是正确的。提供web.xml入口和 Servlet 调用 URL。

导致此错误的主要原因有两个:

1)你没有有效的doGet()方法,当你直接在地址栏中输入servlet的路径时,像Tomcat这样的web容器会尝试调用doGet()方法。

public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException{
....
}

2) 您从 HTML 表单发出 HTTP 发布请求,但您没有 doPost() 方法来处理它。doGet() 无法处理“发布”请求。

public void doPost(HttpServletRequest request, HttpServletResponse response)
throws IOException{
....
}

阅读@BalusC 的答案以获取更多详细信息。: Servlet 中的 doGet 和 doPost

于 2012-08-24T09:06:36.097 回答
-1

换行

pdf=new File("C:\\Users\\lk\\Desktop\\Desktop\\ example.pdf");

pdf=new File("C:/Users/lk/Desktop/Desktop/example.pdf");

然后再继续。

于 2013-03-06T06:28:31.997 回答
-1

你需要做

<form action="servlet name " method="post">

在你的 index.jsp 文件中

于 2015-07-09T11:15:19.000 回答
-1

当出现上述错误时,请覆盖doGet()方法。

@Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        processRequest(req, resp); //To change body of generated methods, choose Tools | Templates.
    }
于 2016-02-02T09:57:03.763 回答
-1

我正在使用html文件。创建网页。所以当我遇到这个错误时。我的解决方案是:只是删除我的 web.xml 文件中的“index.html”路径。因为我的 html 文件名与“index.html”相同

于 2016-08-14T20:39:12.583 回答
-3

每个 servlet 必须包含一个 doGet() 方法,该方法默认由服务器执行。所以看到你有 doGet 方法。

于 2013-11-20T06:40:15.177 回答