摘要:
键盘 W S A D 和上下左右键互换 解决方法:Fn + Windows同时按下 即空格键左数两个和空格键右数两个键 阅读全文
摘要:
import pyttsx3 as pyt engine = pyt.init() engine.say('这是一个练习') engine.runAndWait() No module named "pythoncom" 解决方法 pip install pypiwin32 阅读全文
摘要:
点击新建 在主机后填写要连接的IP地址,默认端口号为22,名称可以随意 输入用户名和密码 如果无法成功在本地ping 一下对应的ip地址,看是否响应 阅读全文
摘要:
版本回退 git reset --hard Head~0 (表示回退到上一次代码提交时的状态) git reset --hard Head~1 (表示回退到上上次代码提交时的状态) git reset --hard [版本号] 可以通过版本号精确的回退到某一次提交时的状态 git reflog 可以 阅读全文
摘要:
跟着视频做的一个小Demo 建表语句 CREATE table customer( id BIGINT PRIMARY KEY, firstName VARCHAR(50), lastName VARCHAR(50), birthday VARCHAR(50) ) 目录结构 Customer实体类 阅读全文
摘要:
跟着视频写的一个小Demo 目录结构: MyWriter.class package com.practice.itemwriter; import org.springframework.batch.item.ItemWriter; import org.springframework.stere 阅读全文
摘要:
1045 Access denied for user 'root'@'localhost' (using password:YES) 找到MySQL安装路径下的my.ini文件 在myssqld下面添加:skip-grant-tables,如下图,重启MySQL,再连接 阅读全文
摘要:
将spring.datasource.driverClassName=com.mysql.jdbc.Driver改成com.mysql.cj.jdbc.Driver 再运行即可 阅读全文
摘要:
在打开文件时启用编码格式file = open("yue.txt",'w',encoding='utf-8') import urllib.requestimport redata = urllib.request.urlopen('#').read().decode("utf-8")pat ='< 阅读全文
摘要:
%type变量:用户事先并不清楚检索的数据列的数据类型,则可以使用%type定义变量 declare name student.sname %type; no student.sno %type; begin select sno,sname into no,name from student wh 阅读全文