gpt4 book ai didi

java - renameTo() 不适用于重命名图像并返回 false

转载 作者:太空宇宙 更新时间:2023-11-04 10:41:43 25 4
gpt4 key购买 nike

我有一个图片库应用程序,我尝试使用 renameTo() 方法重命名图像,但它无法更改文件名并返回 false。我读了很多关于重命名文件的问题,所有这些问题都建议只使用一种重命名文件的方法 - renameTo()。奇怪的是,许多问题都说这不是在各种条件下重命名文件的好方法。
Android 中还有其他重命名文件的方法吗?如果我只使用这种方式,如何使其发挥作用?

 @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_image_gallery);

alert = new AlertDialog.Builder(this);
etRenameFile = new EditText(getApplicationContext());
alert.setTitle("Do you want to rename the file?");
alert.setMessage(" ");
alert.setView(etRenameFile);

alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(final DialogInterface dialog, int whichButton) {
renameFileAlert();
adapter.notifyDataSetChanged();
}
});

alert.setNegativeButton("cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// what ever you want to do with No option.
}
});

private void renameFileAlert(){
String renameFile = etRenameFile.getText().toString();
Log.v(TAG, renameFile + " another");
String filename= al_images.get(int_position).getAl_imagepath().get(fileIndex);

File oldFilePath = new File(al_images.get(int_position).getAl_imagepath().get(fileIndex));
Log.v(TAG,oldFilePath.toString());
// Log.d("OLDFILEPATH", oldFilePath.toString()); // prints the correct path of the file being selected

x = al_images.get(int_position).getAl_imagepath().get(fileIndex);
File renamedFile = new File(x.replace(filename, renameFile));
Log.v(TAG, renamedFile.toString() + " new name"); //prints new name of the file being entered
// Log.d("NEWFILE", renamedFile.toString());

boolean renamed = oldFilePath.renameTo(renamedFile);
if(renamed){
Log.v(TAG, "rename done");
} else Log.v(TAG, "failed");

notifyMediaStoreScanner(renamedFile);
}

public final void notifyMediaStoreScanner(File file) {
// try {
// MediaStore.Images.Media.insertImage(getBaseContext().getContentResolver(),
// file.getAbsolutePath(), file.getName(), null);
getBaseContext().sendBroadcast(new Intent(
Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(file)));
getBaseContext().sendBroadcast(new Intent(
Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(file)));
// } catch (FileNotFoundException e) {
// e.printStackTrace();
// }
}

最佳答案

您想将其重命名为什么?当且仅当重命名成功时,renameTo() 才会返回 true;否则返回 false。

关于java - renameTo() 不适用于重命名图像并返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48898085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com