当前位置: 代码迷 >> Java Web开发 >> 上传文件的路径有关问题
  详细解决方案

上传文件的路径有关问题

热度:27   发布时间:2016-04-17 15:50:39.0
上传文件的路径问题
if(fileItem.getName()!=null   &&   fileItem.getSize()!=0)
{
    CommonFunction   cf=new   CommonFunction();
    bid_picture=cf.getRandom()+ ".gif ";//上传图片的名字
    File   newFile   =   new   File( "c:/temp/ "   +bid_picture);
    try  
    {
        fileItem.write(newFile);
    }   catch   (Exception   e)  
    {
    e.printStackTrace();
    }
}

我现在上传图片只能上传到指定的盘符下,有什么办法能让文件上传到项目的相对路径下呢?

------解决方案--------------------
获取Web项目的全路径
String strDirPath = getServletContext().getRealPath( "/ ");
  相关解决方案