public class TestUUID {
public static void main(String[] args) {
String uuid=UUID.randomUUID().toString();
System.out.println(uuid);
String fileName="sunset...sas.jpg";
int beginIndex=fileName.lastIndexOf(".");
System.out.println(beginIndex+"");
String newFileName=uuid+fileName.substring(beginIndex, fileName.length());
System.out.println(newFileName);
}
}
public static void main(String[] args) {
String uuid=UUID.randomUUID().toString();
System.out.println(uuid);
String fileName="sunset...sas.jpg";
int beginIndex=fileName.lastIndexOf(".");
System.out.println(beginIndex+"");
String newFileName=uuid+fileName.substring(beginIndex, fileName.length());
System.out.println(newFileName);
}
}