相机上传照片异常(Firebase存储)

时间:2016-11-12 20:20:04

标签: java android firebase android-camera firebase-storage

我正在尝试将Android应用程序中相机拍摄的图像上传到Firebase存储。问题是在我拍照后,在确认'活动'中,我按下确认按钮,它说“不幸的是应用程序已停止”。

这是图像,当我按下复选按钮时,应用程序崩溃......

这是我的代码,应用程序可以选择使用图库和相机上传图片。

import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Toast;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.firebase.storage.FirebaseStorage;
import com.google.firebase.storage.StorageReference;
import com.google.firebase.storage.UploadTask;

public class MainActivity extends AppCompatActivity {
// Note: Your consumer key and secret should be obfuscated in your source code before shipping.


private Button selectImage;
private Button selectImageByCamera;
private ImageView imageView;

private StorageReference storageReference;
private ProgressDialog progressDialog;

private static final int CAMERA_REQUEST_CODE = 1;
private static final int GALLERY_INTENT= 2;

@Override
protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    setContentView(R.layout.content_main);
    storageReference=FirebaseStorage.getInstance().getReference();


    /*
    * Code section to upload an image using the Gallery.
    */
    selectImage=(Button)findViewById(R.id.btn_uploadImg);
    progressDialog = new ProgressDialog(this);

    selectImage.setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View view)
        {
            Intent intent = new Intent(Intent.ACTION_PICK);
            intent.setType("image/*");
            startActivityForResult(intent, GALLERY_INTENT);

        }
    });


    /*
    *  Code section to upload an image using the Camera.
    */

    selectImageByCamera=(Button)findViewById(R.id.btn_uploadImgCamera);
    imageView=(ImageView)findViewById(R.id.imageView);

    selectImageByCamera.setOnClickListener(new View.OnClickListener()
    {
        public void onClick(View view)
        {
            Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
            startActivityForResult(intent, CAMERA_REQUEST_CODE);
        }
    });



}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
    super.onActivityResult(requestCode,resultCode,data);

    //Upload the image to Firebase Update
    if(requestCode==GALLERY_INTENT && resultCode == RESULT_OK)
    {
        progressDialog.setMessage("Uploading Image...");
        progressDialog.show();
        Uri uri = data.getData();
        StorageReference filepath = storageReference.child("Photos").child(uri.getLastPathSegment());
        filepath.putFile(uri).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
            @Override
            public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
                Toast.makeText(MainActivity.this, "Upload done", Toast.LENGTH_LONG).show();
                progressDialog.dismiss();
            }

        });
    }
        //Code to upload image taken by the camera to firebase storage
        if(requestCode==CAMERA_REQUEST_CODE && resultCode == RESULT_OK)
        {
            progressDialog.setMessage("Uploading Image...");
            progressDialog.show();

            Uri uri2 = data.getData();
            StorageReference filepath = storageReference.child("Photos").child(uri2.getLastPathSegment());

            filepath.putFile(uri2).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
                @Override
                public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
                    {
                        Toast.makeText(MainActivity.this, "Upload done", Toast.LENGTH_LONG).show();
                        progressDialog.dismiss();
                    }
                }
            });
        }


}



@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
}

我在AndroidManifest.xml中使用了这个PERMISSION:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA"/>

我在build.gradle中编译了这个Firebase

compile 'com.google.firebase:firebase-core:9.8.0'
compile 'com.google.firebase:firebase-database:9.8.0'
compile 'com.google.firebase:firebase-storage:9.8.0'
compile 'com.google.firebase:firebase-auth:9.8.0'

最后,当我在我的Moto G4 6.0.1中运行应用程序时,这是个例外(该应用程序有权使用相机和图库)

    FATAL EXCEPTION: main
Process: mx.com.jamba.jamba, PID: 16543
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { act=inline-data (has extras) }} to activity {mx.com.jamba.jamba/mx.com.jamba.jamba.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.net.Uri.getLastPathSegment()' on a null object reference                                                                      
at android.app.ActivityThread.deliverResults(ActivityThread.java:3720)                                                                       
at android.app.ActivityThread.handleSendResult(ActivityThread.java:3763)                                                                       
at android.app.ActivityThread.access$1400(ActivityThread.java:154)                                                                      
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1403)                                                                      
at android.os.Handler.dispatchMessage(Handler.java:102)                                                                      
at android.os.Looper.loop(Looper.java:148)                                                                       
at android.app.ActivityThread.main(ActivityThread.java:5443)                                                                      
at java.lang.reflect.Method.invoke(Native Method)                                                                      
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:728)                                                                      
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)                                                                    
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.net.Uri.getLastPathSegment()' on a null object reference                                                                      
at mx.com.jamba.jamba.MainActivity.onActivityResult(MainActivity.java:186)                                                                      
at android.app.Activity.dispatchActivityResult(Activity.java:6470)                                                                      
at android.app.ActivityThread.deliverResults(ActivityThread.java:3716)                                                                      
at android.app.ActivityThread.handleSendResult(ActivityThread.java:3763)                                                                      
at android.app.ActivityThread.access$1400(ActivityThread.java:154)                                                                      
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1403)                                                                       
at android.os.Handler.dispatchMessage(Handler.java:102)                                                                       
at android.os.Looper.loop(Looper.java:148)                                                                        
at android.app.ActivityThread.main(ActivityThread.java:5443)                                                                        
at java.lang.reflect.Method.invoke(Native Method)                                                                       
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:728)                                                                        
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)

我不知道该怎么办,你们这些人帮助我会很棒:) 谢谢!

3 个答案:

答案 0 :(得分:3)

发生异常是因为Uri中的onActivityResult()为空:

Uri uri = data.getData();

The documentation for capturing a camera image解释说:

  

如果您提供照片,Android相机应用程序会保存完整尺寸的照片   要保存的文件。 您必须提供完全限定的文件名   相机应用程序应保存照片的位置

按照文档中的示例创建文件Uri并将其添加到相机应用程序的意图中。

答案 1 :(得分:0)

请试试这个

#include <iostream>

using namespace std;


int main()
{
int age;
int ageTotal = 0;
int numberOfPeopleEntered = 0;
cout << "Enter the age of the first person or enter -1 to quit" << endl;
cin >> age;

while (age != -1){
    ageTotal = age + ageTotal;
    numberOfPeopleEntered++;

    cout << "Enter the age of the next person or enter -1 to quit" << endl;
    cin >> age;
}

cout << "the number of people entered is: " << endl;
cout << "the average age is: " << endl;



getchar();
return 0; 
}

答案 2 :(得分:0)

if(requestCode == CAMERA_REQUEST && resultCode == RESULT_OK){
        Bitmap mImageUri = (Bitmap) data.getExtras().get("data");
        select.setImageBitmap(mImageUri);
    }

然后开始发布