3

Androidアプリからloopjを使用してファイルをアップロードすると、onProgressの非常に奇妙な動作が発生します。SyncHttpClient を使用して複数のファイルを次々とアップロードしていますが、バイナリ アセットの実際のサイズや既にアップロードされたバイト数ではなく、ハードコードされた数値や固定数値のように見える数値で onPorgress が常に起動されます。ここに私が得ている出力例があります

V/AsyncHttpResponseHandler﹕ Progress 3353492 from 3353528 (100%)
V/AsyncHttpResponseHandler﹕ Progress 3353528 from 3353528 (100%)
V/AsyncHttpResponseHandler﹕ Progress 1338 from 2417 (55%)
V/AsyncHttpResponseHandler﹕ Progress 2417 from 2417 (100%)

そして、アップロードされたすべてのファイルに対して、まったく同じ一連の呼び出しが発生します。どんなアイデアでも大歓迎です。ところで、ファイルは正常にアップロードされますが、ロード インジケーターが正しく機能しません。

コードサンプルは次のとおりです。

    @Override
    protected void onCreate(Bundle savedInstanceState) {
...
        waveOperation = new WaveOperation();
        waveOperation.execute();

    }
//inner asynchTask class
    private class WaveOperation extends AsyncTask<Void, Object, String> {

        @Override
        protected String doInBackground(Void... arg0) {
            waveAll(ApplicationContextProvider.getContext());
            return "Executed";
        }

        @Override
        protected void onPostExecute(String result) {
        }

        @Override
        protected void onPreExecute() {
        }


        private void waveAll(Context context) {
            String[] projection = new String[]{
                    MediaStore.Images.ImageColumns._ID,
                    MediaStore.Images.ImageColumns.DATA,
                    MediaStore.Images.ImageColumns.BUCKET_DISPLAY_NAME,
                    MediaStore.Images.ImageColumns.DATE_TAKEN,
                    MediaStore.Images.ImageColumns.MIME_TYPE,
                    MediaStore.Images.ImageColumns.ORIENTATION
            };

            String selection = MediaStore.Images.Media.DATE_TAKEN + " > ?";
            String[] selectionArgs = {String.valueOf(ApplicationContextProvider.getCurrentAssetDateTime().getTime())};
            final Cursor cursor = context.getContentResolver()
                    .query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, projection, selection,
                            selectionArgs, MediaStore.Images.ImageColumns.DATE_TAKEN + " ASC");

            while (cursor.moveToNext() && !isCancelled()) {
                final String imageLocation = cursor.getString(1);
                File imageFile = new File(imageLocation);
                if (imageFile.exists()) {   // is there a better way to do this?

                    Bitmap bm = BitmapFactory.decodeFile(imageLocation);
                    int orientation = cursor.getInt(5);

//                    Log.d("###################### orientation: ", String.valueOf(orientation));
                    long timeTaken = cursor.getLong(3);
                    final String dateTaken = simpleDateFormat.format(timeTaken);
...
                    Matrix matrix = new Matrix();
                    matrix.postRotate(orientation);

                    bm = Bitmap.createBitmap(bm, 0, 0, bm.getWidth(), bm.getHeight(), matrix, true); // rotating bitmap
                    final ByteArrayOutputStream stream = new ByteArrayOutputStream();
                    bm.compress(Bitmap.CompressFormat.JPEG, 100, stream);

                    try {
                        EWImage.uploadPhoto(stream.toByteArray(), dateTaken + ".jpg", new AsyncHttpResponseHandler() {
//this is the method that is not being fired often enough during the upload
//and when it's called, it report some weird numbers that look always the same regardles
//of file being uploaded
                                    @Override
                                    public void onProgress(int bytesWritten, int totalSize) {
                                        super.onProgress(bytesWritten, totalSize);
                                        Log.d("--------------progress: ", String.valueOf(bytesWritten) + " of " + String.valueOf(totalSize));
                                    }


                                    @Override
                                    public void onStart() {
                                        super.onStart();
...
                                    }

                                    @Override
                                    public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
...
                                    }

                                    @Override
                                    public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) {
...
                                    }


                                    @Override
                                    public void onFinish() {
                                        super.onFinish();
                                    }
                                }
                        );
                    } catch (FileNotFoundException e) {
                        Log.e("FileNotFound", e.toString());
                        e.printStackTrace();
                    }



                }
            }

        }

    }

EWImage クラスの uploadPhoto メソッドは次のとおりです。

public static void uploadPhoto(byte[] photoByteArray, String photoName, AsyncHttpResponseHandler responseHandler) throws FileNotFoundException {
    responseHandler.setUseSynchronousMode(true);

    RequestParams params = new RequestParams();
    params.put("file", new ByteArrayInputStream(photoByteArray), photoName);

    UploadProgressActivity.currentRequestHandle =
            SYNC_HTTP_CLIENT.post(getAbsoluteUrl("/upload"), params, responseHandler);
}

そして、基本クラスで次のように定義された SYNC_HTTP_CLIENT:

protected final static SyncHttpClient SYNC_HTTP_CLIENT = new SyncHttpClient();

static {
    PersistentCookieStore cookieStore = new PersistentCookieStore(ApplicationContextProvider.getContext());
    SYNC_HTTP_CLIENT.setCookieStore(cookieStore);

}
4

2 に答える 2

1

私はそれを理解しました.Fileパラメータでのみ機能し、StreamまたはByteArrayでは機能しません.loopjのバグのようです.

于 2014-07-30T23:17:22.850 に答える
0

AsyncHttpResponseHandler のソース コードを確認すると、リクエスト応答が取得されるときに「sendProgressMessage」も呼び出されることがわかります。これが最後の 2 つの更新として表示されるものです。

V/AsyncHttpResponseHandler﹕ Progress 1338 from 2417 (55%)    
V/AsyncHttpResponseHandler﹕ Progress 2417 from 2417 (100%)

最初の更新について:

V/AsyncHttpResponseHandler﹕ Progress 3353492 from 3353528 (100%)
V/AsyncHttpResponseHandler﹕ Progress 3353528 from 3353528 (100%)

おそらくすべてのリクエスト ヘッダーも totalSize で考慮されることに注意してください。

于 2014-12-16T15:37:17.113 に答える