作者 RuoYi

新增获取不带后缀文件名称方法

@@ -257,8 +257,8 @@ public class FileUtils @@ -257,8 +257,8 @@ public class FileUtils
257 } 257 }
258 258
259 /** 259 /**
260 - * 获取名称  
261 - * 例如: /profile/upload/2022/04/16/ruoyi.png, 返回: ruoyi.png 260 + * 获取文件名称 /profile/upload/2022/04/16/ruoyi.png -- ruoyi.png
  261 + *
262 * @param fileName 路径名称 262 * @param fileName 路径名称
263 * @return 没有文件路径的名称 263 * @return 没有文件路径的名称
264 */ 264 */
@@ -275,13 +275,15 @@ public class FileUtils @@ -275,13 +275,15 @@ public class FileUtils
275 } 275 }
276 276
277 /** 277 /**
278 - * 获取名称  
279 - * 例如: /profile/upload/2022/04/16/ruoyi.png, 返回: ruoyi 278 + * 获取不带后缀文件名称 /profile/upload/2022/04/16/ruoyi.png -- ruoyi
  279 + *
280 * @param fileName 路径名称 280 * @param fileName 路径名称
281 - * @return 没有文件路径的名称 281 + * @return 没有文件路径和后缀的名称
282 */ 282 */
283 - public static String getNameNotSuffix(String fileName) {  
284 - if (fileName == null) { 283 + public static String getNameNotSuffix(String fileName)
  284 + {
  285 + if (fileName == null)
  286 + {
285 return null; 287 return null;
286 } 288 }
287 String baseName = FilenameUtils.getBaseName(fileName); 289 String baseName = FilenameUtils.getBaseName(fileName);