随笔分类 -  JAVA

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页
JAVA一些常用的方法
摘要:yml配置文件 maps: "{key1: 'value1', key2: 'value2'}" java中 @Value("#{${maps}}") private LinkedHashMap maps; 我这里之所以用LinkedHashMap类型 是因为我想要是有序的 可以根据自己的来 thy 阅读全文
posted @ 2021-05-09 15:30 yvioo 阅读(5073) 评论(0) 推荐(0) 编辑
摘要:执行: git pull origin master --allow-unrelated-histories 然后再重新push即可 阅读全文
posted @ 2021-05-06 17:27 yvioo 阅读(308) 评论(0) 推荐(0) 编辑
摘要:/** * 获取html中body的内容 包含body标签 * @param htmlStr html代码 * @return */ public static String getBody(String htmlStr){ String pattern = "<body[^>]*>([\\s\\S 阅读全文
posted @ 2021-04-28 23:50 yvioo 阅读(856) 评论(0) 推荐(0) 编辑
摘要:这里只需要修改 %04d 中的4即可设置生成几位数 /** * 获取下一个编号 * @param startValue 上一个编号 * @return */ public static String getNext(int startValue) { AtomicInteger val = new 阅读全文
posted @ 2021-04-28 19:39 yvioo 阅读(1654) 评论(0) 推荐(1) 编辑
摘要:File[] files = file.listFiles(); List fileList = Arrays.asList(files); Collections.sort(fileList, new Comparator<File>() { @Override public int compar 阅读全文
posted @ 2021-04-28 19:37 yvioo 阅读(2326) 评论(0) 推荐(0) 编辑
摘要:执行 String[] rwords = (String[]) list.toArray(); 报错[Ljava.lang.Object; cannot be cast to [Ljava.lang.String;这是强转的时候报错了,改成 String[] words = (String[])(l 阅读全文
posted @ 2021-04-28 16:54 yvioo 阅读(5499) 评论(0) 推荐(1) 编辑
摘要:批量插入 <insert id="insertBatchList"> INSERT INTO tag ( `tag_name`, `tag_weight`, ) VALUES <foreach collection ="list" item="tag" separator =","> (#{tag. 阅读全文
posted @ 2021-04-27 20:54 yvioo 阅读(148) 评论(0) 推荐(0) 编辑
摘要:确保不是依赖没有导入或者编码不对问题后 如果还是不行 可以试试以下方式 解决办法 将图片框中Delegate IDE build 勾选 然后重新启动即可 阅读全文
posted @ 2021-04-22 16:13 yvioo 阅读(1372) 评论(0) 推荐(0) 编辑
摘要:Caused by: javax.net.ssl.SSLException: Received fatal alert: protocol_version at sun.security.ssl.Alerts.getSSLException(Alerts.java:208) at sun.secur 阅读全文
posted @ 2021-04-18 23:08 yvioo 阅读(3855) 评论(0) 推荐(0) 编辑
摘要:这里使用了lombok打印日志,也可以不用 import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.securit 阅读全文
posted @ 2021-04-16 10:49 yvioo 阅读(1262) 评论(0) 推荐(0) 编辑
摘要:检查是否一致 阅读全文
posted @ 2021-04-14 16:01 yvioo 阅读(112) 评论(0) 推荐(0) 编辑
摘要:/** * 读取本地html文件里的html代码 * @param file File file=new File("文件的绝对路径") * @return */ public static String toHtmlString(File file) { // 获取HTML文件流 StringBu 阅读全文
posted @ 2021-04-11 19:48 yvioo 阅读(4791) 评论(0) 推荐(0) 编辑
摘要:在pom文件里面添加 <plugins> <!--定义项目的编译环境--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configurati 阅读全文
posted @ 2021-04-11 18:59 yvioo 阅读(4764) 评论(0) 推荐(1) 编辑
摘要:yml增加配置 # 开发环境配置 server: tomcat: max-http-form-post-size: -1 阅读全文
posted @ 2021-04-11 16:52 yvioo 阅读(1447) 评论(0) 推荐(0) 编辑
摘要:/** * 判断字符串中某个字符存在的个数 * @param str1 完整字符串 * @param str2 要统计匹配个数的字符 * @return */ public static int countStr(String str1, String str2) { int count=0; if 阅读全文
posted @ 2021-04-10 23:27 yvioo 阅读(5588) 评论(0) 推荐(0) 编辑
摘要:import java.util.LinkedList; public class Test1 { /** * 位置实体类,根据自己的来即可 */ static class Position{ /** * 纬度 */ private Double latitude; /** * 经度 */ priv 阅读全文
posted @ 2021-04-09 09:28 yvioo 阅读(1955) 评论(0) 推荐(0) 编辑
摘要:引入jar包 下载地址:https://yvioo.lanzous.com/iezpdno3mob 然后打开下载的目录打开cmd执行 mvn install:install-file -Dfile=aspose-words-15.8.0-jdk16.jar -DgroupId=com.aspose 阅读全文
posted @ 2021-04-05 02:07 yvioo 阅读(3120) 评论(2) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页