Я использую следующий код для сохранения аватара пользователя в sdcard
.Вы можете изменить код в соответствии со своими потребностями:
public static String copyToAppDirectory(Context c, Uri uri, String personID) throws IOException {
File src = new File(uri.getPath());
File mediaStorageDir = new File(Environment.getExternalStorageDirectory(), BaseConst.AppDir);
mediaStorageDir = new File(mediaStorageDir, BaseConst.ImageFolder);
File dst = new File(mediaStorageDir, personID + ".JPG");
if (!mediaStorageDir.exists()) {
if (!mediaStorageDir.mkdirs()) {
throw new IOException("Cannot create Directory!");
}
}
InputStream in;
try {
in = c.getContentResolver().openInputStream(uri);
} catch (Exception ex) {
in = new FileInputStream(src);
}
try {
OutputStream out = new FileOutputStream(dst);
try {
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
} finally {
out.close();
}
} finally {
in.close();
}
return dst.getPath();
}
Надеюсь, это поможет вам