问题描述
- 上传图片和音乐的路径问题
-
代码如下:private static final long serialVersionUID = 572146812454L;
private File image; // 上传的文件
private String imageFileName; // 文件名称
private String imageContentType; // 文件类型
User user = (User) ActionContext.getContext().getSession().get("user");
private HttpServletResponse response = ServletActionContext.getResponse();
private HttpServletRequest request = ServletActionContext.getRequest();private List picList;
public List getPicList() {
return picList;
}public void setPicList(List picList) {
this.picList = picList;
}private String picId;
private String userId;
private String commentPic;
//省略getter和setter
public String uploadPicture() throws IOException {
String s = UUID.randomUUID().toString();
String lastName = imageFileName.substring(imageFileName
.lastIndexOf(".") + 1, imageFileName.length());
String name = s + "." + lastName;
username = user.getUsername();
//获取服务器路径
String realpath = ServletActionContext.getServletContext().getRealPath(
"/upload");
System.out.println("realpath: " + realpath);
if (image != null) {
File savefile = new File(new File(realpath), name);
if (!savefile.getParentFile().exists())
savefile.getParentFile().mkdirs();
FileUtils.copyFile(image, savefile);
String imagePath = "/sDemo/upload/" + name;
System.out.println("imagePath: " + imagePath);
Picture picture = new Picture();
picture.setUserId(user.getId());
picture.setUserName(user.getUsername());
picture.setPictureUrl(imagePath);
ser.insertPicture(picture);
}
return "upload";
}我想知道 String realpath = ServletActionContext.getServletContext().getRealPath("/upload");里"/upload"是干什么的?和 String imagePath = "/sDemo/upload/" + name;里的upload有关系吗?
我用这个上传图片上传了一张图片,但是在imagepath路径下并没有看到图片,是存到了realpath下吗?既然这样为什么要将url=imagepath存入数据库而不是存realpath?
上传的图片是不是实际上存在tomcat上的realpath下,通过imagepath存取?这两个路径之间通过什么建立关系?读取图片的时候读取<img src="${pictureUrl}"就可以吗。读取音乐的时候是不是一样的方式?
解决方案
realpath是实际路径,文件上传时需要这个完整的路径才能知道传到哪。
imagePath这个只是保存到数据库的路径,由于是服务器端,我们只要知道在当前站点根目录下的路径即可。由于是相对路径,项目中引用图片显示的时候,可以直接用这个路径。
解决方案二:
看着两者关系
String realpath = ServletActionContext.getServletContext().getRealPath(
"/upload");
String imagePath = "/sDemo/upload/" + name;
应该指web工程的项目名称是sDemo吧。如果项目名称是sDemo,那这两个路径就是一致的了。
解决方案三:
sDemo是工程名称。。求详细点讲解啊。。急着做一个音乐播放器的功能上传这儿卡了很久了