不如下载一个jspsmartupload吧,里面有一个函数。   
<jsp:useBean id="mySmartUpload" scope="page" class="com.jspsmart.upload.SmartUpload" /> 
   // 初始化
    mySmartUpload.initialize(pageContext);
    // Upload
    mySmartUpload.upload();
    //装载需要上传的文件
    com.jspsmart.upload.File myFile = mySmartUpload.getFiles().getFile(0);
 myFile.saveAs(path+"/"+fname);
其中path是你要保存的路径,fname你要改的名字