0

アプリケーションが行うことは非常に簡単です。2 つの RSS フィードを読み込み、各 RSS フィードには、タイトル、画像、およびリンクを含む 2 つの項目が含まれます。次に、画像をダウンロードし、ローカル フォルダーに保存して表示します。つまり、2 つの RSS フィードと 4 つの画像のダウンロードです。

これを行うには AsyncTask を使用します。したがって、2 つの AsyncTasks オブジェクトを呼び出して 2 つの RSS フィードを読み込み、4 つの AsyncTasks オブジェクトを呼び出して 4 つの画像を読み込みます。画像をダウンロードしようとすると問題が発生します。最初の実行では、正常に動作します。しかし、それらをリロードし続けると、AsyncTask が何もしないことがあります。そして、入力ストリームの読み取りに失敗することもあります...非常に奇妙です。

AsyncTask を使用するために欠けているルールはありますか?

以下は私のコードのスニペットです。

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());
        }
    }

}

以下のコードは、画像をロードするためのものです。「実行」が呼び出されても、この doInBackground が呼び出されないことがあります。ここで 'Bitmap bitmap = BitmapFactory.decodeStream(in)' に引っかかって、決して逃げられないことがあります。

    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];
}

私はこれで数日間立ち往生しています..助けてください...

4

1 に答える 1

1

問題はコードにないのかもしれません。BitmapFactory.decodeStream にバグがあり、http 接続から InputStream を使用すると、画像がうまく読み込まれないことがあります。

詳細については、http://code.google.com/p/android/issues/detail?id=6066をご覧ください。

私にとってうまくいく簡単な解決策は、コンテンツデータ全体をバッファにダウンロードしてから BitmapFactory.decodeByteArray メソッドを使用することです:

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();
}

または、1 バイトずつ読みたくない場合:

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();
}
于 2010-12-13T15:38:10.497 に答える