会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
我没有出家
博客园
首页
新随笔
联系
管理
订阅
04 2021 档案
linux上安装redis
摘要:参考安装还有redis常用命令:https://www.cnblogs.com/happywish/p/10944253.html 安装: 1.获取redis资源,可指定目录进行下载 cd / #回到根目录 wget http://download.redis.io/releases/redis-4
阅读全文
posted @
2021-04-23 16:46
我没有出家
阅读(92)
评论(0)
推荐(0)
java读取图片中文字
摘要:字库下载参考:https://github.com/tesseract-ocr/tessdata/tree/3.04.00 解压后在项目根目录创建tessdata目录,将内容复制进去。 如图: 测试: public static void main(String[] args) throws Tes
阅读全文
posted @
2021-04-21 17:48
我没有出家
阅读(1209)
评论(0)
推荐(0)
java爬取https上的图片
摘要:/** * @author szc * @date 2021/4/21 - 16:42 */ public class test4 { public static void main(String[] args) throws IOException { String strUrl = "https
阅读全文
posted @
2021-04-21 16:52
我没有出家
阅读(1116)
评论(0)
推荐(0)
java实现https爬取
摘要:来自: https://blog.csdn.net/Sakuraaaaaaa/article/details/107280162 HttpsUtil 工具类 import org.apache.http.config.Registry; import org.apache.http.config.R
阅读全文
posted @
2021-04-21 09:56
我没有出家
阅读(608)
评论(0)
推荐(0)
linux 上mysql启动
摘要:1. mysqld --user=root 2. service mysqld start
阅读全文
posted @
2021-04-06 10:54
我没有出家
阅读(105)
评论(0)
推荐(0)
git回滚
摘要:1. git log #查看历史提交记录 ,按向下箭头进行向下翻页,按Q键退出查看日志 2. git reset --hard HEAD^ #回退到上个版本 git reset --hard HEAD~3 #回退到前3次提交之前,以此类推,回退到n次提交之前 git reset --hard com
阅读全文
posted @
2021-04-01 11:00
我没有出家
阅读(140)
评论(0)
推荐(0)
游标使用
摘要:CREATE DEFINER=`root`@`localhost` PROCEDURE `use1`() begin DECLARE myid VARCHAR(255); DECLARE no int; DECLARE mycursor CURSOR FOR SELECT `name` from s
阅读全文
posted @
2021-04-01 09:17
我没有出家
阅读(47)
评论(0)
推荐(0)
公告