我想在我的WAR的文件夹名称“textures”中保存文章图片,我正在尝试使用此脚本:
String filePath = "http://localhost:8080/mbshop/tpl/img/textures";
System.out.println("Image Location 2:" + filePath);//see the server console for actual location
File fileToCreate = new File(filePath, this.articleImageFileName);
FileUtils.copyFile(this.articleImage, fileToCreate);//copying image in the new file
当我使用该链接时,它可以工作
String filePath = "D:/images/";
但是我想把它保存在deploy文件夹中,请有人帮帮我