11 2020 档案

摘要:web.xml文件 <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" ><web-app xmlns: 阅读全文
posted @ 2020-11-27 11:30 FWBM 阅读(184) 评论(0) 推荐(0)
摘要:public class UuidUtil { public static String get32UUID() { UUID uuid=UUID.randomUUID(); String str = uuid.toString(); String uuidStr=str.replace("-", 阅读全文
posted @ 2020-11-25 10:55 FWBM 阅读(890) 评论(0) 推荐(0)
摘要:首先这两个元素都实现List接口 ArrayList是最常用的List实现类,内部是通过数组实现的,它允许对元素进行快速随机访问。数组的缺点是每个元素之间不能有间隔,当数组大小不满足时需要增加存储能力,就要讲已经有数组的数据复制到新的存储空间中。当从ArrayList的中间位置插入或者删除元素时,需 阅读全文
posted @ 2020-11-04 14:08 FWBM 阅读(220) 评论(0) 推荐(0)