
Java
暖酒与春风
这个作者很懒,什么都没留下…
展开
-
ThreadLocal的作用
先看一下官方描述: This class provides thread-local variables. These variables differ from their normal counterparts in that each thread that accesses one (via its get or {et} method) has its own, independent...原创 2020-04-25 21:13:14 · 292 阅读 · 1 评论 -
java8获取以秒单位的时间戳
import java.sql.Timestamp; //不带小时,分钟 public static long getTimeStamp(int len) { //LocalTime.of(0,0)换成LocalTime.now()可获得完整的时间戳(13位毫秒) long timestamp = Timestamp.valueOf(LocalDateTim...原创 2018-04-26 21:53:06 · 33523 阅读 · 0 评论 -
基于canvas的图片剪裁工具
工具下载地址:https://github.com/zforler/clip 直接再浏览器中打开index.html即可(基于canvas的图片操作,在谷歌浏览器中会受到同源策略的限制,放到服务容器里面没关系)。 <script src="js/Shape.js"></script><!--核心文件--> <script src="js/Rectang...原创 2018-05-11 17:15:45 · 647 阅读 · 0 评论