gpt4 book ai didi

java - Struts 2 WebContent下上传文件目的地

转载 作者:太空宇宙 更新时间:2023-11-04 15:21:35 25 4
gpt4 key购买 nike

我想将 Struts 2 上传文件目标放置在我的应用程序的 WebContent 下。我已经用过这个方法了;

ServletContext context = ServletActionContext.getServletContext();
String uploadFilePath = context.getRealPath("/uploads");

但是uploadFilePath返回这个

D:\dev\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\MyApplication\uploads

我想得到这个返回值

D:\dev\workspace\MyApplication\WebContent\uploads

如何将Struts2上传文件目的地放置在WebContent下。我使用 Eclipse Juno 和 Windows7。

最佳答案

试试这个,

HttpServletRequest request=(HttpServletRequest)ActionContext.getContext().get(ServletActionContext.HTTP_REQUEST);
String savePath =request.getRealPath("/uploads");
//Here savePath=Application_ROOT_FOLDER\uploads

关于java - Struts 2 WebContent下上传文件目的地,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20343085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com