摘要: 推荐博文: IDEA使用Git协同开发 Git 分支的概念及操作 打开Github的正确姿势 文科软妹带你了解Github 个人总结: Git来开发程序就相当于使用在线表单填表一样 一开始我们前后端两个人进行开发的时候,整合的时候都是前端把写好的页面包打包发给后端开发者,然后解压把页面包放到正确位置 阅读全文
posted @ 2020-01-14 04:16 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
摘要: CSDN博客园地址:https://blog.csdn.net/HumorChen99 阅读全文
posted @ 2020-01-13 14:58 HumorChen99 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 官网的下载是下载不下来的,下着下着卡了 去这个地址下 点击下载 阅读全文
posted @ 2020-01-13 09:47 HumorChen99 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 首先安装好Git 打开 Git Bash 设置全局邮箱 git config --global user.email '3301633914@qq.com' 设置全局使用的名字 git config --global user.name 'humorchen' 键入 ssh-keygen -t rs 阅读全文
posted @ 2020-01-13 00:58 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 核心算法思想: KMP算法 有如下两个字符串 String str1="1234561237802";//被检测字符串 String str1="121234161137102";//提供对比的字符串 利用KMP算法可找出最长公共子串为s="1234",则相似度float rate=(float)s 阅读全文
posted @ 2020-01-12 03:04 HumorChen99 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 华为云 http://mirrors.huaweicloud.com/centos/ CentOS7直接下载地址 http://mirrors.huaweicloud.com/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1908.iso CentOS镜像列表地址 阅读全文
posted @ 2020-01-11 00:40 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 由于QQ邮箱对于SMTP服务发送邮件做了限制,每分钟发送40封之后会被限制不能再发送,对于这样的限制又需要发送大量邮件的时候的解决方案如下 使用多个邮箱轮换使用进行发送 1、将使用的邮箱存储在一个统一的字符串变量中,将所有可使用的邮箱存储在一个字符串数组中(我的三个邮箱授权码相同,如果授权码不同,则 阅读全文
posted @ 2019-11-14 00:53 HumorChen99 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 1、maven中添加如下依赖(不会maven则下载javax.mail的jar包) <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependen 阅读全文
posted @ 2019-10-30 03:23 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 思路: 调用detect方法即可得到重复率(float) 代码如下: package com.hnisc.cmpas.util; import java.util.ArrayList; import java.util.Date; import java.util.List; public clas 阅读全文
posted @ 2019-10-26 14:42 HumorChen99 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1.下载pageoffice3.jar(http://zhuozhengsoft.com/PageOffice/) 2.add pageoffice3.jar to Library 3.创建POI对象 PoiParseWord poiParseWord=new PoiParseWord(file); 阅读全文
posted @ 2019-09-19 08:24 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑