分类: Java

34 篇文章

halo-未整理
Linux启动、停止宝塔 启动 /etc/init.d/bt start 停止 /etc/init.d/bt stop halo官方文档:https://docs.halo.run/install/linux 重新加载 systemd systemctl daemon-reload 运行服务 systemctl start halo 在系统启动时启…
excel解析字段
public String getCellValue(Cell cell) { String value = ""; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); if (cell != null){ switch (cell.getCe…
03.基础知识
案例都来源于韩顺平老师的整理 转义字符 Java常见的转义字符 对应关系 \t 制表位 \n 换行 \\ \ \" " \' ' \r 回车 练习一 package chapter01; /** * Author: fang * Date: 2022-01-09 10:45 星期日 * Class: Chan…