摘要: 一、报错信息 Could not copy property 'committedVirtualMemorySize' from source to target; nested exception is java.lang.reflect.InaccessibleObjectException: 阅读全文
posted @ 2022-01-12 21:32 peanut_zh 阅读(767) 评论(0) 推荐(0) 编辑
摘要: 一、报错信息 Failed to read HTTP message: org.springframework.http.converter.HttpMessageN 二、解决 https://xingyun.blog.csdn.net/article/details/107995920 https 阅读全文
posted @ 2021-08-13 00:47 peanut_zh 阅读(1634) 评论(0) 推荐(0) 编辑
摘要: 一、报错 java.lang.String cannot be cast to com.alibaba.fastjson.JSONArray 二、解决 https://blog.csdn.net/angelofmersy/article/details/52355017 https://blog.c 阅读全文
posted @ 2021-07-27 02:02 peanut_zh 阅读(2567) 评论(0) 推荐(0) 编辑
摘要: 一、报错 nested exception is java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 二、解决 https://blog.csdn.net/weixin_39274753/article/details/79709830 三、 阅读全文
posted @ 2021-07-27 02:00 peanut_zh 阅读(1658) 评论(0) 推荐(0) 编辑
摘要: 一.问题描述 使用SimpleDateFormat的format方法将日期文本化,为什么打印当前日期时,出现不同的月份? SimpleDateFormat f = newSimpleDateFormat("yyyy-mm-dd HH:mm:ss"); 二.干扰知识 yyyy-MM-dd 和 yyyy 阅读全文
posted @ 2021-07-27 01:56 peanut_zh 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 一、报错信息 Error:Maven Resources Compiler: Maven project configuration required for module 'XX(项目名)' isn't available. Compilation of Maven projects is sup 阅读全文
posted @ 2021-05-27 00:15 peanut_zh 阅读(664) 评论(0) 推荐(0) 编辑
摘要: /** * 二分查找思想 */ class Solution { public int searchInsert(int[] nums, int target) { int len = nums.length; //判空 if(len == 0) { return 0; } //如果最后一个元素都没 阅读全文
posted @ 2021-01-05 11:27 peanut_zh 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 二分查找(也称折半查找),仅适用于有序的顺序表。 基本思路是:将给定的值 key 与表中中间位置元素的关键字比较, 若相等,则查找成功,返回该元素的存储位置; 若不等,根据其大小关系,在中间元素的左半部或者右半部进行查找; 一步步缩小范围,直到查到为止。若没查到,则查找失败。 推荐下面这条链接,li 阅读全文
posted @ 2021-01-05 01:27 peanut_zh 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1 public class guiBing2 { 2 public static void mergeSort(int[] list,int[] tempList,int head,int rear){ 3 if(head < rear){ 4 //取分割位置 5 int middle = (he 阅读全文
posted @ 2021-01-04 02:03 peanut_zh 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1 public class guiBing { 2 private static void MergeSort(int[] a,int start,int end){ 3 if(start < end){ 4 //找分割位置 5 int middle = (end + start) / 2; 6 阅读全文
posted @ 2021-01-04 02:00 peanut_zh 阅读(66) 评论(0) 推荐(0) 编辑