我有这个字符串,
Cursor c = db.obtenerDatoEjercicio(selecID);
String stringFoto1 = c.getString(6).toString();
然后 stringFoto1 等于“file:///mnt/sdcard/Pictures/neoadnEditGyM/GYM_2.2.jpg”
该文件存在。
我想删除 sd 上的那个文件,我使用了以下代码:
String stringFoto1 = "file:///mnt/sdcard/Pictures/neoadnEditGyM/GYM_2.2.jpg"
File archivo1 = new File(stringFoto1);
archivo1.delete();
但这不起作用,请帮助。