У меня есть код ниже.
final URL url1 = stringToURL("linki_of_image/image1.jpg");
final URL url2 = stringToURL("linki_of_image/image2.jpg");
final URL url3 = stringToURL("linki_of_image/image3.jpg");
final URL url4 = stringToURL("linki_of_image/image4.jpg");
final URL url5 = stringToURL("linki_of_image/image5.jpg");
mMyTask = new DownloadTask().execute(url1, url2, url3, url4,url5);
private class DownloadTask extends AsyncTask<URL, Integer, List<Bitmap>> {
protected void onPreExecute() {
mProgressDialog.show();
mProgressDialog.setProgress(0);
}
protected List<Bitmap> doInBackground(URL... urls) {
int count = urls.length;
HttpURLConnection connection = null;
List<Bitmap> bitmaps = new ArrayList<>();
for (int i = 0; i < count; i++) {
URL currentURL = urls[i];
try {
connection = (HttpURLConnection) currentURL.openConnection();
connection.connect();
InputStream inputStream = connection.getInputStream();
BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream);
Bitmap bmp = BitmapFactory.decodeStream(bufferedInputStream);
bitmaps.add(bmp);
publishProgress((int) (((i + 1) / (float) count) * 100));
if (isCancelled()) {
break;
}
} catch (IOException e) {
e.printStackTrace();
} finally {
connection.disconnect();
}
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
return bitmaps;
}
protected void onProgressUpdate(Integer... progress) {
mProgressDialog.setProgress(progress[0]);
}
protected void onCancelled() {
Toast.makeText(mContext, "Task cancelled", Toast.LENGTH_SHORT).show();
}
protected void onPostExecute(List<Bitmap> result) {
mProgressDialog.dismiss();
mLLayout.removeAllViews();
for (int i = 0; i < result.size(); i++) {
Bitmap bitmap = result.get(i);
Uri imageInternalUri = saveImageToInternalStorage(bitmap, i);
addNewImageViewToLayout(bitmap);
addNewImageViewToLayout(imageInternalUri);
}
}
}
protected URL stringToURL(String urlString) {
try {
URL url = new URL(urlString);
return url;
} catch (MalformedURLException e) {
e.printStackTrace();
}
return null;
}
protected Uri saveImageToInternalStorage(Bitmap bitmap, int index) {
File file = sdCardDirectory;
file = new File(file, "UniqueFileName" + index + ".jpg");
try {
OutputStream stream = null;
stream = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
stream.flush();
stream.close();
} catch (IOException e) {
e.printStackTrace();
}
Uri savedImageURI = Uri.parse(file.getAbsolutePath());
return savedImageURI;
}
protected void addNewImageViewToLayout(Bitmap bitmap) {
ImageView iv = new ImageView(getApplicationContext());
iv.setImageBitmap(bitmap);
LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, 500);
iv.setLayoutParams(lp);
mLLayout.addView(iv);
}
protected void addNewImageViewToLayout(Uri uri) {
ImageView iv = new ImageView(getApplicationContext());
iv.setImageURI(uri);
LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, 300);
iv.setLayoutParams(lp);
mLLayout.addView(iv);
}
Приведенный выше код загружает изображение с сервера, и оно отлично работает, моя единственная проблема здесь, когда он загружает изображение, код переименовывает его.
Мой вопрос: как я могу загрузить или создать изображение с тем же именем файла (потому что я заметил, что изображение создается)
, потому что деталь saveImageToInternalStorage
переименовывает его в новый файл