摘要: 1 /** 2 * 生成32位编码 3 * @return string 4 */ 5 public static String getUUID(){ 6 String uuid = UUID.randomUUID().toString().trim().replaceAll("-", ""); 7 ... 阅读全文
posted @ 2017-04-13 13:14 朝雾轻寒 阅读(8801) 评论(0) 推荐(0) 编辑