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

 我来答
福喜900
2015-01-21 · TA获得超过6.1万个赞
知道大有可为答主
回答量:1.1万
采纳率:0%
帮助的人:1亿
展开全部
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;
}

}
~如果你认可我的回答,请及时点击【采纳为满意回答】按钮
~~手机提问的朋友在客户端右上角评价点【满意】即可。
~你的采纳是我前进的动力
~~O(∩_∩)O,记得好评和采纳,互相帮助,谢谢。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式