博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springMVC 获取本地项目路径 及后整理上传文件的方法
阅读量:4975 次
发布时间:2019-06-12

本文共 1320 字,大约阅读时间需要 4 分钟。

String path=request.getSession().getServletContext().getRealPath("upload/img/product");//二进制上传MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;//获取文件CommonsMultipartFile fpic=(CommonsMultipartFile) multipartRequest.getFile("fpic");//推断是否有文件提交if(fpic!=null){if(!fpic.isEmpty()){    String time=DataUtil.getCurrentTimeMillis();    String path=request.getSession().getServletContext().getRealPath("upload/img/product");    File file = new File(path+"/"+time+ ".jpg");    fpicurl = "upload/img/product/p"+time+".jpg";    try {         fpic.getFileItem().write(file);    } catch (Exception e) {         e.printStackTrace();         return;    }}}

须要工具包

import org.springframework.web.multipart.MultipartHttpServletRequest;

import org.springframework.web.multipart.commons.CommonsMultipartFile;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestParam;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import java.io.File;

import java.io.IOException;

import com.realgo.util.DataUtil;

class DataUtil	public static String getCurrentTimeMillis(){		return String.valueOf(System.currentTimeMillis());	}

版权声明:本文博客原创文章,博客,未经同意,不得转载。

转载于:https://www.cnblogs.com/mengfanrong/p/4739405.html

你可能感兴趣的文章
Docker容器运行ASP.NET Core
查看>>
Windows Phone开发(37):动画之ColorAnimation
查看>>
DevExpress的Web控件汉化方法
查看>>
js中escape,encodeURI,encodeURIComponent 区别(转)
查看>>
Android studio怎么修改文件名
查看>>
sass学习笔记-安装
查看>>
多缓存并存
查看>>
Flask (二) cookie 与 session 模型
查看>>
修改添加网址的教程文件名
查看>>
hdu 1045:Fire Net(DFS经典题)
查看>>
[BZOJ 1017][JSOI2008]魔兽地图DotR(树形Dp)
查看>>
裁剪图片
查看>>
数据结构实习 problem L 由二叉树的中序层序重建二叉树
查看>>
VS中展开和折叠代码
查看>>
如何确定VS编译器版本
查看>>
设置PL/SQL 快捷键
查看>>
个人阅读作业7
查看>>
转载:深入浅出Zookeeper
查看>>
GMA Round 1 新程序
查看>>
node anyproxy ssi简易支持
查看>>