| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <configuration> |
| | | <!-- 日志存放路径 --> |
| | | <property name="log.path" value="/home/ruoyi/logs" /> |
| | | <property name="log.path" value="/home/mes/logs" /> |
| | | <!-- 日志输出格式 --> |
| | | <property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n" /> |
| | | |
| | |
| | | /** |
| | | * 获取文件类型 |
| | | * <p> |
| | | * 例如: ruoyi.txt, 返回: txt |
| | | * 例如: jcdm.txt, 返回: txt |
| | | * |
| | | * @param file 文件名 |
| | | * @return 后缀(不含".") |
| | |
| | | /** |
| | | * 获取文件类型 |
| | | * <p> |
| | | * 例如: ruoyi.txt, 返回: txt |
| | | * 例如: jcdm.txt, 返回: txt |
| | | * |
| | | * @param fileName 文件名 |
| | | * @return 后缀(不含".") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 获取文件名称 /profile/upload/2022/04/16/ruoyi.png -- ruoyi.png |
| | | * 获取文件名称 /profile/upload/2022/04/16/jcdm.png |
| | | * |
| | | * @param fileName 路径名称 |
| | | * @return 没有文件路径的名称 |
| | |
| | | } |
| | | |
| | | /** |
| | | * 获取不带后缀文件名称 /profile/upload/2022/04/16/ruoyi.png -- ruoyi |
| | | * 获取不带后缀文件名称 /profile/upload/2022/04/16/jcdm.png |
| | | * |
| | | * @param fileName 路径名称 |
| | | * @return 没有文件路径和后缀的名称 |