简体   繁体   English

Android位图压缩错误

[英]Android bitmap compress error

I am trying to take a photo from android and post it to the server but when I run the app, I can access the camera, take a photo and get a crash after accepting the photo, but the app should convert the image to base64, and send it to the server. 我正在尝试从android拍摄照片并将其发布到服务器,但是当我运行该应用程序时,我可以访问相机,拍摄照片并在接受照片后崩溃,但是该应用程序应将图像转换为base64,并将其发送到服务器。 Why? 为什么? (The error is in the line 79:Encode_image class: bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream); (错误在第79:Encode_image类行中:bitmap.compress(Bitmap.CompressFormat.JPEG,100,stream);

The crash error is : 崩溃错误是:

E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /storage/emulated/0/test123.jpg: open failed: EACCES (Permission denied)
E/AndroidRuntime: FATAL EXCEPTION: AsyncTask #1
              Process: com.example.andrei.sendphotos, PID: 3870
              java.lang.RuntimeException: An error occurred while executing doInBackground()
                  at android.os.AsyncTask$3.done(AsyncTask.java:309)
                  at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354)
                  at java.util.concurrent.FutureTask.setException(FutureTask.java:223)
                  at java.util.concurrent.FutureTask.run(FutureTask.java:242)
                  at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:234)
                  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
                  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
                  at java.lang.Thread.run(Thread.java:818)
               Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean android.graphics.Bitmap.compress(android.graphics.Bitmap$CompressFormat, int, java.io.OutputStream)' on a null object reference
                  at com.example.andrei.sendphotos.MainActivity$Encode_image.doInBackground(MainActivity.java:79)
                  at com.example.andrei.sendphotos.MainActivity$Encode_image.doInBackground(MainActivity.java:72)
                  at android.os.AsyncTask$2.call(AsyncTask.java:295)
                  at java.util.concurrent.FutureTask.run(FutureTask.java:237)

Here is my code: 这是我的代码:

public class MainActivity extends AppCompatActivity {

private Button takePhotoButton;
private String encoded_string, image_name;
private Bitmap bitmap;
private File file;
private Uri file_uri;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    takePhotoButton = (Button) findViewById(R.id.take_photo);
    takePhotoButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
            getFileUri();
            i.putExtra(MediaStore.EXTRA_OUTPUT, file_uri);
            startActivityForResult(i, 10);
        }
    });
}




private void getFileUri() {
    image_name= "test123.jpg";
    //file = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES) + File.separator + image_name);
    file = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + image_name);
    file_uri = Uri.fromFile(file);
}




@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if(requestCode == 10 && resultCode == RESULT_OK){
        new Encode_image().execute();
    }
}


private class Encode_image extends AsyncTask<Void, Void, Void>{

    @Override
    protected Void doInBackground(Void... params) {

        bitmap = BitmapFactory.decodeFile(file_uri.getPath());
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.JPEG, 100,  stream);


        //convert stream to byte array
        byte[] array = stream.toByteArray();
        encoded_string = Base64.encodeToString(array, 0);
        return null;
    }

    @Override
    protected void onPostExecute(Void aVoid) {
        makeRequest();
    }
}

private void makeRequest() {
    RequestQueue requestQueue = Volley.newRequestQueue(this);
    StringRequest request = new StringRequest(Request.Method.POST, "http://192.168.1.102/AndroidFileUpload/connection.php",

            new Response.Listener<String>() {
                @Override
                public void onResponse(String response) {

                }
            }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {

        }
    }) {
        @Override
        protected Map<String, String> getParams() throws AuthFailureError {
            HashMap<String, String> map = new HashMap<>();
            map.put("encoded_string", encoded_string);
            map.put("image_name", image_name);

            return map;
        }
    };
    requestQueue.add(request);
}

}

问题可能是因为您正在获取实际路径,但是您需要真实路径

have you given the permission for writing to external storage in your app AndroidManifest ? 您是否已授予在应用程序AndroidManifest中写入外部存储的权限?

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

or this one for reading from external storage : 或这个从外部存储读取:

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

or if you are using android 6 or above device you should ask for permission explicitly in your code... 或者,如果您使用的是android 6或更高版本的设备,则应在代码中明确请求权限...

hope this helps 希望这可以帮助

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM