Java удалить расширение файла с имени файла

fileNameWithOutExt = "test.xml".replaceFirst("[.][^.]+$", "");
Delightful Dogfish