public class GsonUtil { private static Gson gson = null; static { if (gson == null) { gson = new Gson(); } } private GsonUtil() { } /** * 对象转字符串 * @pa ...
分类:
编程语言 时间:
2021-01-27 13:35:43
阅读次数:
0
一、测试类 import java.util.Arrays; public class SortTest { private static final int L = 20; public static void main(String[] args) { int [] arr = new int[ ...
分类:
编程语言 时间:
2021-01-26 12:42:40
阅读次数:
0
随机生成MAC //MAC地址分隔符 private static String SEPARATOR_OF_MAC = "-"; Random random = new Random(); //mac数据 String[] macs = { String.format("%02x", 0x52), ...
分类:
系统相关 时间:
2021-01-22 11:50:15
阅读次数:
0
/** * 栏目列表转成树结构 * * @param list * @return */private static List<SysDict> listToTree(List<SysDict> list,Long id) { if (list == null || list.isEmpty()) ...
分类:
其他好文 时间:
2021-01-21 10:46:05
阅读次数:
0
package com.example.delete;import java.io.File;public class DeleteDirectory { /** * 删除空目录 * @param dir 将要删除的目录路径 */ private static void doDeleteEmptyD ...
分类:
其他好文 时间:
2021-01-21 10:32:07
阅读次数:
0
public class VolatileExample extends Thread{ //设置类静态变量,各线程访问这同一共享变量 private static boolean flag = false; //无限循环,等待flag变为true时才跳出循环 public void run() { ...
分类:
其他好文 时间:
2021-01-19 11:58:55
阅读次数:
0
前言 有的时候,我们需要修改一个变量的值,但变量也许存在于 Jar 包中或其他位置,导致我们不能从代码层面进行修改,于是我们就用到了下面的场景,通过反射来进行修改变量的值。 定义一个实体类 class Bean{ private static final Integer INT_VALUE = 10 ...
分类:
编程语言 时间:
2021-01-18 11:05:15
阅读次数:
0
/** * 反转集合中的内容 */ private static void test03() { List<String> list = new ArrayList<>(); Collections.addAll(list, "w", "l", "m");//给list集合添加元素 Collecti ...
分类:
其他好文 时间:
2021-01-18 10:33:36
阅读次数:
0
/** * 为集合增加内容。 使用addALL()方法可以为一个集合增加内容,此方法可以接收可变参数,所以可以传递任意多的参数作为集合的内容 */ private static void test02() { List<String> all = new ArrayList<String>(); C ...
分类:
其他好文 时间:
2021-01-18 10:32:29
阅读次数:
0
今天突然就微信支付就调不起来了,而且我找了一个相同代码的项目,查看了他的微信支付,并没有异常。奇怪之余,进入微信交流社区搜索相关问题,没想到遇到同样问题的。从他们的交流间的到解决办法。如下: 原来: private static string sendPost2(string URL, string ...
分类:
微信 时间:
2021-01-16 11:45:12
阅读次数:
0