会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
端木祈月
博客园
首页
新随笔
联系
订阅
管理
2020年4月30日
达尔优键盘 W S A D 和上下左右键互换
摘要: 键盘 W S A D 和上下左右键互换 解决方法:Fn + Windows同时按下 即空格键左数两个和空格键右数两个键
阅读全文
posted @ 2020-04-30 23:23 端木祈月
阅读(2548)
评论(0)
推荐(0)
2020年3月28日
pyttsx3文字语音转换报错 No module named "pythoncom"
摘要: import pyttsx3 as pyt engine = pyt.init() engine.say('这是一个练习') engine.runAndWait() No module named "pythoncom" 解决方法 pip install pypiwin32
阅读全文
posted @ 2020-03-28 23:43 端木祈月
阅读(1526)
评论(0)
推荐(0)
2020年3月26日
xshell连接CentOS
摘要: 点击新建 在主机后填写要连接的IP地址,默认端口号为22,名称可以随意 输入用户名和密码 如果无法成功在本地ping 一下对应的ip地址,看是否响应
阅读全文
posted @ 2020-03-26 19:49 端木祈月
阅读(194)
评论(0)
推荐(0)
2020年3月20日
git基本操作(二)
摘要: 版本回退 git reset --hard Head~0 (表示回退到上一次代码提交时的状态) git reset --hard Head~1 (表示回退到上上次代码提交时的状态) git reset --hard [版本号] 可以通过版本号精确的回退到某一次提交时的状态 git reflog 可以
阅读全文
posted @ 2020-03-20 22:41 端木祈月
阅读(152)
评论(0)
推荐(0)
2020年3月16日
springBatch将文件中的数据输出到数据库
摘要: 跟着视频做的一个小Demo 建表语句 CREATE table customer( id BIGINT PRIMARY KEY, firstName VARCHAR(50), lastName VARCHAR(50), birthday VARCHAR(50) ) 目录结构 Customer实体类
阅读全文
posted @ 2020-03-16 22:45 端木祈月
阅读(380)
评论(0)
推荐(0)
SpringBatch的ItemWriterDemo
摘要: 跟着视频写的一个小Demo 目录结构: MyWriter.class package com.practice.itemwriter; import org.springframework.batch.item.ItemWriter; import org.springframework.stere
阅读全文
posted @ 2020-03-16 21:14 端木祈月
阅读(493)
评论(0)
推荐(0)
2020年3月15日
Navicat for MySQL连接 出现1045 Access denied for user 'root'@'localhost' (using password:YES)
摘要: 1045 Access denied for user 'root'@'localhost' (using password:YES) 找到MySQL安装路径下的my.ini文件 在myssqld下面添加:skip-grant-tables,如下图,重启MySQL,再连接
阅读全文
posted @ 2020-03-15 11:33 端木祈月
阅读(743)
评论(0)
推荐(0)
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.
摘要: 将spring.datasource.driverClassName=com.mysql.jdbc.Driver改成com.mysql.cj.jdbc.Driver 再运行即可
阅读全文
posted @ 2020-03-15 10:53 端木祈月
阅读(116)
评论(0)
推荐(0)
2019年7月4日
python写入文件乱码文图
摘要: 在打开文件时启用编码格式file = open("yue.txt",'w',encoding='utf-8') import urllib.requestimport redata = urllib.request.urlopen('#').read().decode("utf-8")pat ='<
阅读全文
posted @ 2019-07-04 22:22 端木祈月
阅读(1159)
评论(0)
推荐(0)
2018年9月10日
PlSql %type
摘要: %type变量:用户事先并不清楚检索的数据列的数据类型,则可以使用%type定义变量 declare name student.sname %type; no student.sno %type; begin select sno,sname into no,name from student wh
阅读全文
posted @ 2018-09-10 23:30 端木祈月
阅读(545)
评论(0)
推荐(0)
下一页
公告