我要从图库中获取图像,然后要从文件路径中获取文件名并重命名并再次保存。这可能吗?如果是,怎么办?,下面的代码重复执行,但是不起作用
File photo = new File(Utilities.getRealPathFromURI(selectedImageUri, this));
File renamed_File = new File("DeviceId" + "_" + System.currentTimeMillis() + ".jpg");
photo.renameTo(renamed_File);
System.out.println("Renamed file---->" + photo.getName());