mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
fix doc
This commit is contained in:
parent
3178bd1839
commit
e354ea93cc
@ -174,6 +174,14 @@ public class FileNameUtil {
|
||||
if (0 == len) {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
//issue#2642,多级扩展名的主文件名
|
||||
for (final CharSequence specialSuffix : SPECIAL_SUFFIX) {
|
||||
if(StrUtil.endWith(fileName, "." + specialSuffix)){
|
||||
return StrUtil.subPre(fileName, len - specialSuffix.length() - 1);
|
||||
}
|
||||
}
|
||||
|
||||
if (CharUtil.isFileSeparator(fileName.charAt(len - 1))) {
|
||||
len--;
|
||||
}
|
||||
|
@ -13,4 +13,10 @@ public class FileNameUtilTest {
|
||||
name = FileNameUtil.cleanInvalid("\r1\r\n2\n");
|
||||
Assert.assertEquals("12", name);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void mainNameTest() {
|
||||
final String s = FileNameUtil.mainName("abc.tar.gz");
|
||||
Assert.assertEquals("abc", s);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user