07 2021 档案
摘要:1、判断数组当中是否存在某个数值 console.log(arr.indexOf(1000)) console.log(arr.includes(201)) 2、对数组的遍历 forEach():范围比map广,他能做的事情map不一定能做 map():map能做的事情forEach一定能做 arr
阅读全文
摘要:/** * 将某文件夹下的文件压缩成zip文件 * * @param filePath 将要被压缩的文件夹 形如 xx\xx\xx.txt 或xx\xx\xx.zip等 * @param zipOut zip文件输出流 * @throws IOException */public static vo
阅读全文
摘要:@Test public void testA(){ String[] arr1 = new String[]{"B","A","H","E"};// String[] arr1 = DataUtils.sortArray(arr); //第一种方式 for (int i = 0; i < arr1
阅读全文