文件响应后删除文件

发布于 2024-12-18 08:32:32 字数 296 浏览 4 评论 0原文

我想在 Resteasy put 请求后删除文件。 我的代码:

@PUT
@Path("/audioconverter")
public File audioConverter(@Context HttpServletRequest request, File file,
        @QueryParam("codec") String codec,....

        ...
   return aFile();
   }

返回后我想删除文件系统中的 aFile() 。我怎样才能做到这一点?

I want to delete a file after a Resteasy put request.
My code:

@PUT
@Path("/audioconverter")
public File audioConverter(@Context HttpServletRequest request, File file,
        @QueryParam("codec") String codec,....

        ...
   return aFile();
   }

After the return I want to delete aFile() in the filesystem. How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀟灑尐姊 2024-12-25 08:32:33

根据上面的一些建议,我能够执行以下操作:

    File zipDirectory = new File(outputZipFolder);

    StreamingOutput stream = new StreamingOutput() {
        @Override
        public void write(OutputStream output) throws IOException, WebApplicationException {
            java.nio.file.Path path = Paths.get(outputZipFile);
            byte[] data = Files.readAllBytes(path);
            output.write(data);
            output.flush();
            FileUtils.cleanDirectory(zipDirectory);

        }
    };

Following some advice from above I was able to do the following:

    File zipDirectory = new File(outputZipFolder);

    StreamingOutput stream = new StreamingOutput() {
        @Override
        public void write(OutputStream output) throws IOException, WebApplicationException {
            java.nio.file.Path path = Paths.get(outputZipFile);
            byte[] data = Files.readAllBytes(path);
            output.write(data);
            output.flush();
            FileUtils.cleanDirectory(zipDirectory);

        }
    };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文