
工具库
风影楼c
这个作者很懒,什么都没留下…
展开
-
阿里云oss上传与下载
public class OSSClientUtil { //填入相应字符串 private static String endpoint = ""; private static String accessKeyId = ""; private static String accessKeySecret = ""; private static Str...原创 2018-12-13 23:36:00 · 1190 阅读 · 0 评论 -
发邮件包含附件
public class SendMailService { public void createTs(EmailDto emailDto) throws MessagingException, IOException { Properties prop = new Properties(); prop.setProperty("mail.host", ...原创 2018-12-26 18:54:09 · 582 阅读 · 0 评论 -
时间戳转化成时间
public static String stampToDate(String s){ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String sd = simpleDateFormat.format(new Date(Long.valueOf(s + "000...原创 2019-03-05 15:59:44 · 442 阅读 · 0 评论