You can write a class called FilenameUtils in the Apache common library.
import org.apache.commons.io.FilenameUtils;
String fileNameWithOutExt = FilenameUtils.removeExtension(fileNameWithExt);
You can use it like this.
© 2025 OneMinuteCode. All rights reserved.