我正在编写一个网络应用程序,我想将一个文件上传到 servlet。我读到我可以使用 ServletFileUpload.parseRequest(request) 它在一台计算机上工作。但是当我尝试在另一台计算机上运行代码时,我收到一个错误,该函数需要 RequestContext: ServletFileUpload.parseRequest(RequestContext)
在该函数与 HttpServletRequest 一起使用的计算机上,我看到了带有 RequestContext 的函数。但我不使用它
是否有另一种方法可以将文件上传到 servlet?