private void changeFilePostfix(File file, String postfix) {
String filePath = file.getAbsolutePath();
String newFilePath = filePath.substring(0, filePath.lastIndexOf(".")) + "." + postfix;
file.renameTo(new File(newFilePath));
}
String filePath = file.getAbsolutePath();
String newFilePath = filePath.substring(0, filePath.lastIndexOf(".")) + "." + postfix;
file.renameTo(new File(newFilePath));
}