如何从 Servlet 获取 XML 文件

How to fetch and XML file from Servlet

我正在尝试从 Java Servlet 获取 XML 文件。我看了很多教程,但 none 我看过的教程很管用。

在我的index.htmla中写了下一个函数

document.addEventListener("DOMContentLoaded", function(){
                fetch("AppServlet")
                        .then(response => console.log(response));
            });

并且该提取的响应是...

Response {type: "basic", url: "http://localhost:8080/TW/AppServlet", redirected: false, status: 200, ok: true, …}
body: ReadableStream
bodyUsed: false
headers: Headers {}
ok: true
redirected: false
status: 200
statusText: ""
type: "basic"
url: "http://localhost:8080/TW/AppServlet"
__proto__: Response

但问题出在我的 AppServlet 上。我不知道如何发送一个位于我的 WEB PAGES 目录中的 XML 文件。 有没有简单的方法让它成为可能?

在您的 servlet 中,如果您想要响应获取请求,则必须覆盖 doGet() 方法。

对于发送 xml 文件,我认为应该是这样的。

  @Override
  protected void doGet(HttpServletRequest req, HttpServletResponse resp)
      throws ServletException, IOException {

    File xmlFile = new File("someFile.xml"); //Your file location
    long length = xmlFile.length();

    resp.setContentType("application/xml");
    resp.setContentLength((int) length);

    byte[] buffer = new byte[1024];
    ServletOutputStream out = resp.getOutputStream();

    try (BufferedInputStream in = new BufferedInputStream(new FileInputStream(xmlFile))) {
      int bytesRead = 0;
      while ((bytesRead = in.read(buffer)) != -1) {
        out.write(buffer, 0, bytesRead);
      }
    }

    out.flush();
  }