簡體   English   中英

使用HttpPost將圖像從Android畫廊上傳到Firebase存儲

[英]Upload image from android gallery to Firebase storage using HttpPost

我創建了一個將圖像從圖庫上傳到Firebase存儲的android應用程序,我需要使用HttpPost上傳圖像。

我的代碼如下:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent 
data) {
switch (requestCode) {
case TAKE_AVATAR_GALLERY_REQUEST:
if (resultCode == Activity.RESULT_OK) {
Uri photoUri = data.getData();
Bitmap avatar= Media.getBitmap(getContentResolver(), photoUri);
String strAvatarFilename = "avatar.jpg";
try {
 avatar.compress(CompressFormat.JPEG, 100,
 openFileOutput(strAvatarFilename, MODE_PRIVATE));
} catch (Exception e) {
Log.e(DEBUG_TAG, "Avatar compression and save failed.", e);
}

Uri imageUriToSaveCameraImageTo = Uri.fromFile(new File(
QuizSettingsActivity.this.getFilesDir(), strAvatarFilename));
Editor editor = mGameSettings.edit();
editor.putString(GAME_PREFERENCES_AVATAR, 
imageUriToSaveCameraImageTo.getPath());
editor.commit();

在doInBackground方法中,我調用postAvatarToServer,如下所示:

private boolean postAvatarToServer() {
    boolean succeeded = false;
    String avatar = mGameSettings.getString(GAME_PREFERENCES_AVATAR, "");
    MultipartEntity entity = new 
           MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
    File file = new File(avatar);
    if (file.exists()) {
        FileBody encFile = new FileBody(file);
        entity.addPart("avatar", encFile);
        HttpPost request = new 
            HttpPost("https://firebasestorage.googleapis.com/v0/b/HERE I 
            WRITE THE FOLDER URL WITHOUT [gs://]/o/");
        request.setEntity(entity);
        HttpClient client = new DefaultHttpClient();
        try {
             HttpResponse response = client.execute(request);
             HttpEntity r_entity = response.getEntity();
            int statusCode = response.getStatusLine().getStatusCode();
            String responseString = null;
            if (statusCode == 200) {
                    responseString = EntityUtils.toString(r_entity);
            } else {
                    responseString = "Error occurred! Http Status Code: "
                                + statusCode;
            }
            succeeded = true;

        } catch (ClientProtocolException e) {
           Log.e(DEBUG_TAG, "Unexpected ClientProtocolException",e);
        } catch (IOException e) {
            Log.e(DEBUG_TAG, "Unexpected IOException", e);
        }
} else {
    Log.d(DEBUG_TAG, "No avatar to upload");
    succeeded = true;
            }
    return succeeded;

        }

在logcat中,我得到了!發生錯誤! Http狀態碼:400

那么錯誤在哪里以及如何解決...

為什么不使用現有的Android SDK

Uri file = Uri.fromFile(new File("path/to/local/file.jpg"));
StorageReference storageRef = storageRef.child("images/"+file.getLastPathSegment());
uploadTask = storageRef.putFile(file);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM