jdk
GoodStudyAndDayDayUp
日日留心,事事留心
展开
-
java util.date和sql.date
1. 遍历时间区间 /** * 1. 触发时获取当前时间点时间; * 2. 获取后3年的时间数据;(需要干掉当前时间之后的数据) * 3. 解析每一天的数据:日/周/月/季度/年/财年.../假期,封装list; * 4. 批量新增list * * @author: leiming5 */ private void handle() { Date startDate = new Date();原创 2021-02-27 17:04:43 · 259 阅读 · 0 评论 -
javax.naming.CommunicationException:simple bind faild
发生异常:javax.naming.CommunicationException:simple bind faild:办法一:项目启动配置添加-Dcom.sun.jndi.ldap.object.disableEndpointIdentification=true办法二:项目启动类添加;System.setProperty(“com.sun.jndi.ldap.object.disableEndpointIdentification”, “true”);...原创 2021-02-24 09:20:20 · 3488 阅读 · 0 评论 -
java正则匹配查找是否包含大写字母
/** * . 表示任一字符 * * 等于{0,} 表示任意数量 * .* 表示任意数量的任意字符 * .*[A-Z]+.* 包含大写字母的字符串 * * @param str * @return */ public static boolean judgeContainsStr(String str) { String regex=".*[A-Z]+.*"; Matcher m=...原创 2021-02-10 10:01:51 · 2703 阅读 · 0 评论 -
inputstream outputstream 和byte[]的关系
1. 数据来源InputStream 本质上是byte[] ,input 意味者将数据从外部获取到内存,并封装到byte[]中。子类:FileInputStream流是从文件中获取数据(文件,不在内存中的数据);ByteArrayInputStream从内存中获取数据(已经存在于内存的数据);最终,都会产生一个InputStream类型的对象。2. 代码解析2.1 简单复制文件 public static void main(String[] args) throws IOExcept原创 2020-12-16 13:50:16 · 1797 阅读 · 0 评论 -
java jdk structure中符号的含义
我们在研究jdk的时候一定会看到,很多符号,具体啥意思,一番研究总结如下:1 class\method\field\interfacec:class缩写m:method 缩写f:field缩写i:interface缩写2 public\private\default(无修饰符)\protect绿色锁:public小圆圈:default红色锁:private灰色钥匙:protect3 final\static\File is read-only(整个文件只读)左上角符号:f原创 2020-05-18 11:43:53 · 1538 阅读 · 0 评论