上一页 1 ··· 3 4 5 6 7
摘要: ps ps -aux (a 显示现行终端机下的所有程序,包括其他用户的程序。 u 以用户为主的格式来显示程序状况。 x 显示所有程序,不以终端机来区分。) netstat netstat -napt (-a 显示所有连接和侦听端口,默认不显示LISTEN相关; -n 以数字形式显示地址和端口号。 - 阅读全文
posted @ 2022-08-18 13:22 张载zz 阅读(566) 评论(0) 推荐(0) 编辑
摘要: 01、ide 目录常用配置 解决启动打印输出乱码serve tomcatLocalhostLog TomcatCatalinaLog 的乱码设置 01、修改tomacat下安装目录下的配置文件 conf/logging.properties ,确认编码格式为utf-8 02、idea中HELP->  阅读全文
posted @ 2022-08-15 13:37 张载zz 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 报错信息: Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Expression #1 of ORDER BY clause is not in GROUP BY clause and contains 第一 阅读全文
posted @ 2022-08-03 14:12 张载zz 阅读(973) 评论(0) 推荐(0) 编辑
摘要: [Client]port = 3307 [mysqld]#设置3307端口port = 3307server-id = 2# 设置mysql的安装目录basedir=E:\\mysql-5.7.37-winx64# 设置mysql数据库的数据的存放目录datadir=E:\\mysql-5.7.37 阅读全文
posted @ 2022-06-24 09:36 张载zz 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 位(bit)、字节(byte)、字符、编码之间的关系 1、位: 数据存储的最小单位。每个二进制数字0或者1就是1个位; 2、字节: 8个位构成一个字节;即:1 byte (字节)= 8 bit(位); 1 KB = 1024 B(字节); 1 MB = 1024 KB; (2^10 B) 1 GB 阅读全文
posted @ 2020-11-25 14:05 张载zz 阅读(440) 评论(0) 推荐(0) 编辑
摘要: package com.homework.shopticket;public class Shop implements Runnable { private String name; //抢的票 private int num = 0; //总票数 private int count = 10; 阅读全文
posted @ 2020-11-17 18:36 张载zz 阅读(141) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7