谁能告诉我如何获取没有扩展名的文件名?例子:
fileNameWithExt = "test.xml"; fileNameWithOutExt = "test";
如果您像我一样,宁愿使用一些他们可能已经想到所有特殊情况的库代码,例如如果您在路径中传递 null 或点而不是在文件名中会发生什么,您可以使用以下内容:
import org.apache.commons.io.FilenameUtils; String fileNameWithOutExt = FilenameUtils.removeExtension(fileNameWithExt);