如何在部署文件夹中保存图像

时间:2016-01-29 14:49:20

标签: java-ee file-upload deployment save

我想在我的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文件夹中,请有人帮帮我

0 个答案:

没有答案