最新发布第9页
MySQL将自增长字段值重新从0开始-Ddmit

MySQL将自增长字段值重新从0开始

清空表数据,并让自增的id重新从0开始: truncate table 你的表名
ddmit的头像-DdmitDdmit5年前
015861
Windows平台iTunes非Microsoft Store版官网下载-Ddmit

Windows平台iTunes非Microsoft Store版官网下载

下载iTunes非Microsoft Store版 在使用AltStore时,提示必须安装iTunes网页版,而不是Microsoft Store版才能使用,于是去官网下载: iTunes Official Download。 在上述页面按'Ctrl+F'搜索insta...
ddmit的头像-DdmitDdmit5年前
018951
Docker启动容器报错:port is already allocated解决办法-Ddmit

Docker启动容器报错:port is already allocated解决办法

环境信息 docker: 19.03.6; CENTOS 7搬瓦工 ; 错误原因 服务器重启后,docker启动nginx等容器报错: Failed to allocate and map port 443-443: Bind for 0.0.0.0:443 failed: port is alread...
ddmit的头像-DdmitDdmit5年前
027291
三种方式修改maven编译Java版本-Ddmit

三种方式修改maven编译Java版本

配置完maven之后,每次使用IntelliJ Idea打开项目之后Project bytecode version总是Java 1.5版本,这是因为maven3在编译的时候,默认使用的jdk1.5进行编译的。 如果我们想要使用更高版本编译,...
ddmit的头像-DdmitDdmit6年前
020761
Java将文件名转为小写-Ddmit

Java将文件名转为小写

代码: /** * 列出目录下所有的文件&文件夹 * * @param dirName 路径名称 * @return * @author 四个空格-https://www.4spaces.org */ public static void listAllFiles(String dirName) { /...
ddmit的头像-DdmitDdmit5年前
013451
VMware Workstation 12 Pro安装CentOS图文教程-Ddmit

VMware Workstation 12 Pro安装CentOS图文教程

本文记录了VMware Workstation 12 Pro安装CentOs的整个过程,具体如下: VMware Workstation 12; CENTOS 6.4 ; 创建虚拟机 1.首先安装好VMware Workstation 12,具体安装过程此处略过; 2.启...
ddmit的头像-DdmitDdmit6年前
019361
CENTOS搭建FTP服务器(vsftpd安装及配置)-Ddmit

CENTOS搭建FTP服务器(vsftpd安装及配置)

1.环境 CentOS Linux release 7.6.1810 (Core); vsftpd: version 3.0.2; 2.安装 vsftpd root@ssr ~]# yum install -y vsftpd 3.启动 vsftpd [root@ssr ~]# systemctl start vsftpd 启动后,可...
ddmit的头像-DdmitDdmit6年前
026591
解决wordpress 5.3更新后Uncaught Typeerror: $ is not a function-Ddmit

解决wordpress 5.3更新后Uncaught Typeerror: $ is not a function

更新wordpress到版本5.3之后,出现如下错误: Uncaught Typeerror: $ is not a function 本文通过插件的办法解决,解决办法如下: 下载插件 插件地址:https://github.com/LuRenJiasWorld/jQuer...
ddmit的头像-DdmitDdmit6年前
021011
Google Gson报错:java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to解决办法-Ddmit

Google Gson报错:java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to解决办法

Google Gson报错:java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to解决办法 错误信息: java.lang.ClassCastException: com.google.gson.internal.Li...
ddmit的头像-DdmitDdmit6年前
041121
MyEclipse:String literal is not properly closed by a double-quote-Ddmit

MyEclipse:String literal is not properly closed by a double-quote

初学java,经常遇到这个问题”String literal is not properly closed by a double-quote eclipse”,错误的具体表现形式就是中文乱码,解决方法之一就是更改工程的编码方式。首先选择工程,右...
ddmit的头像-DdmitDdmit6年前
018071