在ssh项目中,如何新增图片路径的问题
急急急。新增图片的路径到数据库,然后在项目下面新建了一个upload文件夹,能把图片存到服务器的webapps目录下,也能把图片存到数据库中,就是不能存到项目下的uplo...
急急急。新增图片的路径到数据库,然后在项目下面新建了一个upload文件夹,能把图片存到服务器的webapps目录下,也能把图片存到数据库中,就是不能存到项目下的upload文件夹中,请问什么问题,怎么解决。请教高手!!!谢谢了哈
展开
1个回答
展开全部
public String upload()
{
String newPicName=new Date().getTime()+picFileName.substring(picFileName.indexOf("."));
String dstPath = ServletActionContext.getServletContext().getRealPath("upload")+ "\\" + newPicName;
File dstFile = new File(dstPath);
copy(this.getPic(),dstFile);
Map request=(Map)ServletActionContext.getContext().get("request");
request.put("newPicName", newPicName);
request.put("oldPicName", picFileName);
request.put("picPath", "/upload"+ "/" + newPicName);
return ActionSupport.SUCCESS;
}
{
String newPicName=new Date().getTime()+picFileName.substring(picFileName.indexOf("."));
String dstPath = ServletActionContext.getServletContext().getRealPath("upload")+ "\\" + newPicName;
File dstFile = new File(dstPath);
copy(this.getPic(),dstFile);
Map request=(Map)ServletActionContext.getContext().get("request");
request.put("newPicName", newPicName);
request.put("oldPicName", picFileName);
request.put("picPath", "/upload"+ "/" + newPicName);
return ActionSupport.SUCCESS;
}
更多追问追答
追问
你好,参照你给的代码,然后在自己的项目的基础上进行修改,然后在upload文件夹中生成了一个Thumbs.db 这样的东西,并且乱码,请问这是什么问题,你的是可行的吗?
追答
不要管这个Thumbs.db,没什么影响。你上传没成功?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询