上一页 1 2 3 4 5 6 7 ··· 27 下一页
摘要: 1.安装ignite服务器 下载链接: https://ignite.apache.org/download.cgi#binaries 解压之后本地启动,进入安装目录之后,使用命令: ignite.bat ..\examples\config\example-ignite.xml 启动成功示例如下: 阅读全文
posted @ 2021-10-25 15:43 lick 阅读(834) 评论(0) 推荐(0) 编辑
摘要: 解决方法:Eclipse可以智能的把UTF-8+BOM文件转为普通的UTF-8文件,IDEA没有这个智能转换。将编码转换一下即可 参考链接:https://www.cnblogs.com/diffx/p/10000123.html 阅读全文
posted @ 2021-02-22 18:21 lick 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 官网下载 https://opencv.org/releases/ github下载 https://github.com/opencv/opencv/releases 下载之后安装(就是解压),可以设置安装路径 配置环境变量 把下面两条添加进path里 %OPENCV_HOME%\build\x6 阅读全文
posted @ 2021-02-22 17:57 lick 阅读(1030) 评论(0) 推荐(0) 编辑
摘要: centos 安装 zookeeper 1.下载链接 https://downloads.apache.org/zookeeper/ 2.解压 tar -xzvf apache-zookeeper-3.5.8.tar.gz 进入解压的目录中 cd /zookeeper/bin 启动服务: ./zkS 阅读全文
posted @ 2021-01-15 10:50 lick 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 使用Collections.shuffle() import java.util.ArrayList; import java.util.Collections; import java.util.List; public class UrlMain { public static void mai 阅读全文
posted @ 2021-01-11 15:49 lick 阅读(1367) 评论(0) 推荐(0) 编辑
摘要: Integer.valueOf() 返回 Integer 包装类 Integer.parseInt() 返回 int 基本类型 源码 public static Integer valueOf(String s) throws NumberFormatException { return Integ 阅读全文
posted @ 2020-10-29 16:50 lick 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 分组 Collectors.groupingBy 分区 Collectors.partitioningBy TestMain.java package com.nenu; import java.util.*; import java.util.stream.Collectors; public c 阅读全文
posted @ 2020-10-28 00:13 lick 阅读(680) 评论(0) 推荐(0) 编辑
摘要: 原因 检查/usr/bin目录中无wget命令文件,但存在wge命令的文件,由于命令文件有被重命名导致报错。 解决 1.执行以下命令查询wge命令的路径。 whereis wge 返回如下信息 wge:/usr/bin/wge 2.根据上述的路径,执行以下命令重命名即可。 cp /usr/bin/w 阅读全文
posted @ 2020-09-28 00:19 lick 阅读(1352) 评论(0) 推荐(0) 编辑
摘要: 对 阅读全文
posted @ 2020-09-13 15:37 lick 阅读(102) 评论(0) 推荐(0) 编辑
摘要: import org.assertj.core.util.Lists; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.stream.Collectors; 阅读全文
posted @ 2020-09-04 11:37 lick 阅读(6093) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 27 下一页