문제

What the application does is very simple. It loads two RSS feeds and on each RSS feed, it contains two items with a title, an image and a link. And then it downloads the images, saves it on to local folder and display them. So two RSS feeds, and 4 images downloading.

I use AsyncTask to do this. So, two AsyncTasks objects are called to load two RSS feeds and 4 AsyncTasks to load 4 images. The problems happens when it tries to download images. For the first run, it works fine. but if I keep reloading them, sometimes AsyncTask doesn't do anything. And sometimes it fails to read inputstream... very weird.

Is there any rule that I am missing to use AsyncTask?

Below is the snippets of my code.

public class TunesAppsWidgetProvider extends AppWidgetProvider {

private Intent taService = null;
private static boolean widgetEnabled = false;

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
    taService = new Intent(context, UpdateService.class);
    context.startService(taService);
}

public static class UpdateService extends Service {


    @Override
    public void onStart(Intent intent, int startId) {
        Log.d(Constants.TAG, "Service: onStart()");
        Context context = getApplicationContext();
        mViews = new RemoteViews(context.getPackageName(), R.layout.tunesappswidget);

        thisWidget = new ComponentName(this, TunesAppsWidgetProvider.class);
        manager = AppWidgetManager.getInstance(this);

        buildFeedUpdate();

        this.stopSelf();
        Log.d(Constants.TAG, "Stop Service");
    }

    public void buildFeedUpdate() {
        Log.d(Constants.TAG, "buildFeedUpdate");
        Context context = getApplicationContext();

        feedParser_0 = new FeedParser(context, Constants.FEED_ID_0);
        feedParser_1 = new FeedParser(context, Constants.FEED_ID_1);

        feedTask_0 = new LoadFeedTask();
        feedTask_0.execute(
                new LoadFeedTask.Payload(
                        feedParser_0,
                        UpdateService.this
                )
        );

        feedTask_1 = new LoadFeedTask();
        feedTask_1.execute(
                new LoadFeedTask.Payload(
                        feedParser_1,
                        UpdateService.this
                )
        );
    }

    public void buildCoverUpdate(byte feedID, List<Message> feedRSS, String operator) {
        Context context = getApplicationContext();

        Log.d(Constants.TAG, "buildCoverUpdate: " + feedID);
        try {
            switch(feedID) {
                case Constants.FEED_ID_0:
                        coverImage_0 = new CoverImage(context, feedRSS.get(Constants.ITEM_IDX_0).getImageLink(), Constants.SLOT_0);

            coverImageTask_0 = new LoadCoverImageTask();
                        coverImageTask_0.execute(
                            new LoadCoverImageTask.Payload(
                                    coverImage_0,
                                    UpdateService.this
                            )
                        );

                        coverImage_1 = new CoverImage(context, feedRSS.get(Constants.ITEM_IDX_1).getImageLink(), Constants.SLOT_1);

                        coverImageTask_1 = new LoadCoverImageTask();
                            coverImageTask_1.execute(
                                new LoadCoverImageTask.Payload(
                                    coverImage_1,
                                    UpdateService.this
                                )
                        );
                    break;

                case Constants.FEED_ID_1:
                        coverImage_2 = new CoverImage(context, feedRSS.get(Constants.ITEM_IDX_0).getImageLink(), Constants.SLOT_2, operator);
                    coverImageTask_2 = new LoadCoverImageTask();
                        coverImageTask_2.execute(
                                new LoadCoverImageTask.Payload(
                                        coverImage_2,
                                        UpdateService.this
                                )
                        );

                        coverImage_3 = new CoverImage(context, feedRSS.get(Constants.ITEM_IDX_1).getImageLink(), Constants.SLOT_3, operator);
                        bm_3 = coverImage_3.getDefaultCoverImage();
                            coverImageTask_3 = new LoadCoverImageTask();
                            coverImageTask_3.execute(
                                new LoadCoverImageTask.Payload(
                                    coverImage_3,
                                    UpdateService.this
                                )
                        );
                    break;

                default:
                    break;
            }
        }
        catch(Exception e) {
            Log.d(Constants.TAG, "buildCoverUpdate: " + e.toString());
        }
    }

}

And below code is for loading image. Sometimes this doInBackground never being called even though 'execute' is called. Sometimes it's stuck on 'Bitmap bitmap = BitmapFactory.decodeStream(in)' here and never escape.

    protected LoadCoverImageTask.Payload doInBackground(LoadCoverImageTask.Payload... param) {
    HttpURLConnection httpConn = null;
    InputStream in;
    File imageFile;
    FileOutputStream fos;
    int slotIdx = param[0].coverImage.getSlotIndex();
    System.setProperty("http.keepAlive", "false");

    try{
        URL fileURL = new URL(param[0].coverImage.getFileURL());
        httpConn = (HttpURLConnection) fileURL.openConnection();
        Log.d(Constants.TAG , "openConn: Slot " + slotIdx);

        httpConn.setConnectTimeout(10000);

        if(httpConn.getResponseCode() == HttpURLConnection.HTTP_OK) {
            Log.d(Constants.TAG , "200OK: Slot " + slotIdx + ": " + fileURL.toString());

            in = httpConn.getInputStream();
            imageFile = new File(param[0].coverImage.getFullFilePath());
            fos = new FileOutputStream(imageFile);

            try {
                Bitmap bitmap = BitmapFactory.decodeStream(in);
                Log.d(Constants.TAG , "200OK: Slot " + slotIdx + " decodeStream(in);");
                if(bitmap.compress(Bitmap.CompressFormat.JPEG, 80, fos) == true) {
                    fos.flush();
                    fos.close();
                    in.close();
                    Log.d(Constants.TAG , "200OK-decodeOK: Slot " + slotIdx);
                    param[0].result = Constants.TRUE;
                }
                else {
                    fos.flush();
                    fos.close();
                    in.close();
                    Log.d(Constants.TAG , "200OK-decodeFail: Slot " + slotIdx);
                    param[0].result = Constants.FALSE;
                }
            }
            catch(NullPointerException e) {
                Log.d(Constants.TAG , "Slot " + slotIdx + ":" + e.toString());
                param[0].result = Constants.RETRY;
            }
        }
        else {
            Log.d(Constants.TAG , "Slot " + slotIdx + ":" + httpConn.getResponseCode());
            param[0].result = Constants.FALSE;
        }

    } catch(SocketTimeoutException e) {
        Log.d(Constants.TAG , "Time Out: " + slotIdx + ":" + e.toString());
    } catch(Exception e) {
        Log.d(Constants.TAG , "Slot " + slotIdx + ":" + e.toString());
        param[0].result = Constants.FALSE;
    }
    finally {
        if(httpConn != null) httpConn.disconnect();
        Log.d(Constants.TAG , "Slot " + slotIdx + ":httpConn.disconnect");
    }
    return param[0];
}

I am stuck on this for a couple of days.. please help...

도움이 되었습니까?

해결책

Maybe the problem is not in your code. There is a bug in BitmapFactory.decodeStream, and if you use InputStream from http connection, it sometimes doesn't load the image well.

Look at http://code.google.com/p/android/issues/detail?id=6066 for more information

Simple solution that works for me is downloading a whole content data into buffer and then using BitmapFactory.decodeByteArray method:

InputStream is = httpCon.getInputStream();
byte [] content = inputStreamToByteArray2(is);
image = BitmapFactory.decodeByteArray(content, 0, content.length);


public static final byte[] inputStreamToByteArray(InputStream is) throws IOException {
    BufferedInputStream bis = new BufferedInputStream(is);
    ByteArrayOutputStream buf = new ByteArrayOutputStream();
    int result = bis.read();
    while(result !=-1) {
        byte b = (byte)result;
        buf.write(b);
        result = bis.read();
    }
    return buf.toByteArray();
}

or if you don't want to read by 1 byte:

public static final byte[] inputStreamToByteArray(InputStream is) throws IOException {
    BufferedInputStream bis = new BufferedInputStream(is);
    ByteArrayOutputStream buf = new ByteArrayOutputStream();
    byte[] buffer = new byte[256];
    int result = bis.read(buffer);
    while(result > 0) {
        buf.write(buffer, 0, result);
        result = bis.read(buffer);
    }
    return buf.toByteArray();
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top