We use cookies to collect and analyze information on site performance and usage, to provide social media features and to enhance and customize content and advertisements.
Got it
public static String removeExtension(String fileName) { int extPos = fileName.lastIndexOf("."); if(extPos == -1) { return fileName; } else { return fileName.substring(0, extPos); } }