- 浏览: 1310 次
- 性别:
- 来自: 重庆
最新评论
文章列表
//String sfjj 是否加减 0 减, 1 是 加。
//String type (year-年 ,month-月 ,day-日)
//int num 是加减数
public static String addOrsubtractByDate(String date ,String type ,String sfjj ,int num) throws ParseException {
//将String类型的时间转为date类型
SimpleDateFormat formatter=new SimpleDateFormat("yyyy-MM-dd&quo ...
一:封装一个静态方法
/**
* 附件上传(支持各种文件)
* @param MultipartFile 类型的file文件对象
* @return Map - fileName(文件名称) , newFileName(新文件名称) ,saveFilePath(上传路径)
*/
public static Map<String, String> uploadFile(MultipartFile file){
Map<String , String> objectMap = new HashMap<String , ...