摘要:
判断指定日期是否在某个日期内 public static SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd"); public static SimpleDateFormat format1 = new SimpleDateFormat 阅读全文
摘要:
/** * 从字符串中提取纯数字 * @param str * @return */ public static String getNumeric(String str) { String regEx="[^0-9]"; Pattern p = Pattern.compile(regEx); Ma 阅读全文
摘要:
/** * 获取day天之后的日期 * @param day 天数 * @return */ public static String getDate(int day){ Calendar calendar1 = Calendar.getInstance(); calendar1.add(Calen 阅读全文
摘要:
<dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.3.3</version> </dependency> package com.test; 阅读全文
摘要:
1、制作PDF模板 网址打开:https://www.pdfescape.com/open/ 我们这里先在线上把基础的内容用word文档做好,然后转成PDF模板,直接上传到网站上,这样方便点 假设我们pdf是这样 然后我们选择文件上传到网站上之后,如下图所示 选择文件后,点击upload ,或者可以 阅读全文
摘要:
默认office2007(word2007)是没有另存为pdf文档的功能的,需要安装插件 插件地址:https://yvioo.lanzous.com/iO5myedoceh 下载之后直接安装,安装成功后,重新打开word 就会看到另存为pdf功能了 阅读全文
摘要:
先把数组转为list 然后再利用contains方法 String[] strArr = new String[] { "a1", "b1", "c1"}; String str = "c1"; List<String> list = Arrays.asList(strArr); boolean r 阅读全文
摘要:
引入maven <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> 有 阅读全文
摘要:
tomcat启动报错后显示以下错误 ## There is insufficient memory for the Java Runtime Environment to continue.# Native memory allocation (malloc) failed to allocate 阅读全文
摘要:
在java项目中,我们会遇到价格、金额的数据,这时候我们java中应该用BigDecimal类型,数据库用decimal类型, 长度可以自定义, 如18; 小数点我们项目中用的是2, 保留2位小数. 此外还要注意的就是默认值, 一定写成0.00, 不要用默认的NULL, 否则在进行加减排序等操作时, 阅读全文