String MultipartFile怎么实现带进度条的上传

 我来答
信玄居士72a5251
推荐于2016-11-15 · TA获得超过4406个赞
知道大有可为答主
回答量:3257
采纳率:100%
帮助的人:1789万
展开全部
import java.io.File; 
import java.io.IOException; 

import javax.servlet.ServletContext; 
import javax.servlet.http.HttpSession; 

import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RequestParam; 
import org.springframework.web.multipart.MultipartFile; 
import org.springframework.web.servlet.ModelAndView; 

/** 
* @author gr 
* @date 2014.2.12 
* @ grprogram@163.com 
*/ 
@Controller 
public class FileUpload { 
   
@RequestMapping("fileUploadPage")//对应页面传来的action 
public ModelAndView fileUpload(@RequestParam("file") MultipartFile file1,HttpSession session) throws Exception, IOException { 
ModelAndView mav=new ModelAndView(); 
if (file1.isEmpty()) { 
mav.setViewName("fail.html"); 
}else { 
File tempFile=new File(session.getServletContext().getRealPath(".")+"/"+file1.getOriginalFilename()); 
if (!tempFile.exists()) { 
tempFile.createNewFile(); 

file1.transferTo(tempFile);//写入文件 
System.out.println(session.getServletContext().getRealPath("")+"/"+file1.getOriginalFilename());
System.out.println(tempFile.getAbsolutePath()); 
mav.setViewName("success"); 

// @RequestParam("name") String name, 
//mav.addObject("name", name); 
return mav; 


}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式