gpt4 book ai didi

java - 在Spring webmvc应用程序中获取WebContent的相对路径

转载 作者:行者123 更新时间:2023-12-01 11:12:22 25 4
gpt4 key购买 nike

我在保存数据的 myApp/WebContent/resources/文件夹中的某个位置创建与我的 web 应用程序相关的文件夹时遇到问题。

String folderPath="/WebContent/resources/"+title;

File folder=new File(folderPath);
if(!folder.exists())
System.out.println("Folder created "+folder.mkdir());

输出总是错误

最佳答案

您可以在以下几行中执行某些操作:-

 String folderPath= request.getServletContext().getRealPath("/");
File file = new File (folderPath+"title");
file.mkdir();

上面的代码将在 servletcontainer/webappContext 中创建一个文件夹标题。

正如 @Raedwald 提到的,在 webappContext 中创建任何文件夹都不是一个好习惯。

引用此链接:Best practice to store temporary data for a webapp

关于java - 在Spring webmvc应用程序中获取WebContent的相对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32203027/

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