上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 68 下一页
摘要: 执行: git pull origin master --allow-unrelated-histories 然后再重新push即可 阅读全文
posted @ 2021-05-06 17:27 yvioo 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 下载:http://www.c-nergy.be/products.html 也可以直接服务器里 wget https://www.c-nergy.be/downloads/xRDP/xrdp-installer-1.2.3.zip 解压 unzip xrdp-installer-1.2.3.zip 阅读全文
posted @ 2021-04-29 14:30 yvioo 阅读(131) 评论(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 阅读(1653) 评论(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 阅读(2322) 评论(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 阅读(5498) 评论(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 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 确保下方两个都安装了 sudo apt-get install openssh-server sudo apt-get install ssh 修改 vim /etc/ssh/sshd_config 增加或修改配置 PermitRootLogin yes StrictModes yes 然后保存退出 阅读全文
posted @ 2021-04-23 14:42 yvioo 阅读(353) 评论(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 阅读(3853) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 68 下一页