文件响应后删除文件
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据上面的一些建议,我能够执行以下操作:
Following some advice from above I was able to do the following: