我有自己的服务器,我想自动逐个下载图像。 现在我所尝试的是下载并将图像保存在设备上,并且100%完美地工作。但这对单张图片有用,这里就是好link。但它正在工作但只能下载一个图像,或者您可以为一个链接说一个图像。
想法出现在我脑海中,那就是创建Url的字符串数组,然后应用for循环,然后下载并执行那么多的Asynctask。
但这不是一个好习惯,因为它会启动太多的异步任务。
我想要什么
我希望如果我有10个Url,那么它应该从中下载图像 第一个网址是最后一个网址但是一个接一个,我的意思是First Image有 已下载然后它应该在保存后启动第二个图像 第一个设备上的图像。
它应该为所有图像集体显示进度条进度。并且应该更新进度,假设有10个图像,那么当第一个图像成功下载时应该显示10%完成,如果下载了2个图像,它应该显示20%。
请给我源代码或任何可以帮助我的东西。谢谢。
答案 0 :(得分:1)
如果你已经单独下载了一个正在运行的,那么链接几个图像的下载有什么问题呢?如果你不关心精确的进展(至少这是我在这里理解的那样),你可以通过for循环来做到这一点。
伪码:
String[] urlStack = {"http://www.myimage.com/1.jpg", "http://www.myimage.com/2.jpg", "http://www.myimage.com/3.jpg"};
for(int i = 0; i < urlStack.length; i++)
{
yourAlreadyDoneDownloadProcedure(updateProgressCallback);
}
... 当您的下载完成后,updateProgressCallback方法当然会在您的下载过程中被调用。 ...
private void updateProgressFallback()
{
progressBarText += 100 / urlStack.length;
}
这只是为了演示你如何/应该接近这个。
编辑您的第一条评论:
在这种情况下,您应该使用FutureTask。
FutureTask对象可以等待完成,没有任何while()...sleep
e.g。
for(int i = 0; i < urlStack.length; i++)
{
// fTask is an array of your download procedure objects
// get() will wait until the Task is done, no manual sleep commands necessary
fTask[i].get();
// since we have a concatenation of downloads, we can update progress here
progessBarText += 100 / urlStack.length;
}
编辑您的第二条评论:
你会有一个实现Callable
的类,你的所有魔法都会发生:
public class MyCallable implements Callable<String>
{
String url;
public MyCallable(String s)
{
url = s;
}
@Override
public String call() throws Exception
{
// Download image here, you have the URL stored in `url`
return "I'm done";
}
}
然后你的FutureTask运行该对象:
MyCallable img1 = new MyCallable("http://www.myimage.com/1.jpg");
MyCallable img2 = new MyCallable("http://www.myimage.com/2.jpg");
FutureTask<String> fTask = new FutureTask<String>(img1);
fTask.get();
fTask = new FutureTask<String>(img2);
fTask.get();
这会让它更清楚吗?上面的代码可以进行很多优化,这只是为了了解您需要了解的FutureTask
答案 1 :(得分:1)
为什么不在aysncTask中尝试这个循环,因为这不会创建多个aysncTask对象,减少内存使用。
public class httpDownloadImages extends AsyncTask<Void,Void,String> {
Bitmap myBitmap[]=new Bitmap[10];
@Override
protected void onPreExecute() {
super.onPreExecute();
showProgressDialog();
}
@Override
protected String doInBackground(Void... params) {
try {
for(int i=1; i<=10; i++){
String src="http://"+ip+"/images/"+i+".jpg";
java.net.URL url = new java.net.URL(src);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
myBitmap[i] = BitmapFactory.decodeStream(input);
if(myBitmap[i]!=null)
saveimagetoFile(myBitmap[i],i);
}
} catch (IOException e) {
return null;
}
return "successful";
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
progress_dialog.hide();
}
}
并定义一种方法,以便在需要时将图像保存到SD卡:
void saveimagetoFile(Bitmap bmp,int num){
try {
String path = Environment.getExternalStorageDirectory().toString();
OutputStream fOut = null;
File file = new File(path, "PriceChecker/pc"+num+".jpg"); // the File to save to
fOut = new FileOutputStream(file);
bmp.compress(Bitmap.CompressFormat.JPEG, 100, fOut); //save image to jpeg file
fOut.flush();
fOut.close();
}catch (Exception e){
}
}
但在我的情况下,图像名为1.jpg,2.jpg,3.jpg ......等 希望这有帮助
修改强> 显示进度对话框的方法:
private void showProgressDialog(){
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
View promptView;
LayoutInflater layoutInflater = LayoutInflater.from(OrderActivity_gridstyle.this);
promptView = layoutInflater.inflate(R.layout.progress_dialog, null);
alertDialogBuilder.setView(promptView);
alertDialogBuilder.setCancelable(true);
progress_dialog=alertDialogBuilder.create();
progress_dialog.show();}
我使用的进度对话框是形状:滚轮,当然你可以使用不同的形状或类型。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:id="@+id/progress_time">
<ProgressBar
style="?android:attr/progressBarStyleLarge"
android:layout_width="150dp"
android:layout_height="150dp"
android:id="@+id/prog_circle"
android:max="100"
android:progress="0"
android:indeterminate="true"
android:indeterminateDrawable="@drawable/progress_wheel"
android:layout_below="@+id/textView11"
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Please Wait"
android:id="@+id/textView11"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textColor="@color/blue_" />
</RelativeLayout>