07 2022 档案

摘要:ctrl+shift+p 阅读全文
posted @ 2022-07-28 10:19 花田007 阅读(99) 评论(0) 推荐(0) 编辑
摘要:ctrl+shift+r 阅读全文
posted @ 2022-07-28 10:18 花田007 阅读(301) 评论(0) 推荐(0) 编辑
摘要:ctrl+shift+t 阅读全文
posted @ 2022-07-28 10:17 花田007 阅读(82) 评论(0) 推荐(0) 编辑
摘要:service sshd restart 阅读全文
posted @ 2022-07-27 11:38 花田007 阅读(146) 评论(0) 推荐(0) 编辑
摘要:1、官网下载opencv https://opencv.org/releases/ 2、下载opencv 并解压 unzip opencv-3.4.7.zip cd opencv-3.4.7 mkdir build cd build/ 3、编译opencv的java版本 yum install an 阅读全文
posted @ 2022-07-27 11:32 花田007 阅读(415) 评论(0) 推荐(0) 编辑
摘要:1、下载 2、创建目录 mkdir /usr/java 3、解压文件,并挪移至指定目录 tar -zxvf jdk-8u281-linux-x64.tar.gz mv jdk1.8.0_281 /usr/java/ 4、配置环境变量 编辑配置文件 vim /etc/profile 在文件末尾添加如下 阅读全文
posted @ 2022-07-26 11:02 花田007 阅读(131) 评论(0) 推荐(0) 编辑
摘要:sshd未启动 service sshd restart 阅读全文
posted @ 2022-07-26 09:59 花田007 阅读(126) 评论(0) 推荐(0) 编辑
摘要:// 1.检验防火墙是否启动firewall-cmd --state // 2. 检查8080 端口是否启动:firewall-cmd --permanent --zone=public --list-ports //3.开启 8080 端口:firewall-cmd --zone=public - 阅读全文
posted @ 2022-07-25 15:44 花田007 阅读(12705) 评论(0) 推荐(1) 编辑
摘要:清除公钥: ssh-keygen -R 172.XX.XX.XX 问题解决。 阅读全文
posted @ 2022-07-25 09:45 花田007 阅读(90) 评论(0) 推荐(0) 编辑
摘要:@Configurationpublic class OpencvConfig { private static String pathStr; @Value("${opencv.path}") public void setWinPathStr(String path) { pathStr = p 阅读全文
posted @ 2022-07-22 14:09 花田007 阅读(1353) 评论(0) 推荐(0) 编辑
摘要:<dependency> <!-- groupId,artifactId,version自定义> <groupId>sun.misc.BASE64Decoder</groupId> <artifactId>BASE64Decoder</artifactId> <version>1.0</versio 阅读全文
posted @ 2022-07-21 16:08 花田007 阅读(831) 评论(0) 推荐(0) 编辑
摘要:https://www.vmware.com/cn/products/workstation-pro/workstation-pro-evaluation.html 阅读全文
posted @ 2022-07-21 09:15 花田007 阅读(90) 评论(0) 推荐(0) 编辑
摘要:package com.example.climbnumber.yzm; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org.apache.http.HttpResponse; im 阅读全文
posted @ 2022-07-16 15:53 花田007 阅读(1735) 评论(0) 推荐(0) 编辑
摘要:/** * * @param path * @return String * @description 将文件转base64字符串 * @date 2018年3月20日 * @author changyl * File转成编码成BASE64 */ public static String fileT 阅读全文
posted @ 2022-07-14 16:24 花田007 阅读(8969) 评论(0) 推荐(0) 编辑
摘要:因为http是明文传输的,如果在传输过程中被黑客捕获到,黑客就可以得到消息内容,修改http内容。 因为网络请求会通过很多节点转发,这些节点都能捕获和修改http内容。例如黑客设立了一个免费的wifi,那么连接这个wifi的用户访问http的页面时就可能会被攻击。 使用https可解决http不安全 阅读全文
posted @ 2022-07-14 10:22 花田007 阅读(1078) 评论(0) 推荐(0) 编辑
摘要:vue是数据改变影响视图。 问题描述: 需求是:点击按钮后进入handleOkReview方法前需要按钮转圈圈。但是实际效果是,没来得及转圈就进入了方法。(debugger测试出来的) signSubmit() { this.loading=true; this.$refs.realForm.han 阅读全文
posted @ 2022-07-13 14:15 花田007 阅读(161) 评论(0) 推荐(0) 编辑
摘要:解决办法 阅读全文
posted @ 2022-07-11 15:22 花田007 阅读(12) 评论(0) 推荐(0) 编辑
摘要:Ctrl+Alt+Shift+L 调出格式化配置对话框 阅读全文
posted @ 2022-07-06 14:29 花田007 阅读(149) 评论(0) 推荐(0) 编辑
摘要:DateFormat format = new SimpleDateFormat("yyyy-MM-dd"); //定义日期格式化的格式 String classDateString = "2015-08-12"//需要加减的字符串型日期 Date classDate = format.parse( 阅读全文
posted @ 2022-07-05 14:11 花田007 阅读(3402) 评论(0) 推荐(0) 编辑
摘要:<update id="softDel" parameterType="String">SELECT * FROM study WHERE id in <foreach item="item" index="index" collection="ids.split(',')" open="(" se 阅读全文
posted @ 2022-07-01 16:52 花田007 阅读(400) 评论(0) 推荐(0) 编辑
摘要:http://t.zoukankan.com/liuwt365-p-7750888.html 阅读全文
posted @ 2022-07-01 11:12 花田007 阅读(130) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示