1

Androidアプリケーションのimageviewにアップロードした画像をサーバーに送信して、そこにアップロードしようとしています。あちこちでいくつかのチュートリアルを読みましたが、試したことが機能していないため、サーバーが画像を処理する方法が原因である可能性があります。

さて、これは私がアンドロイドのイメージビューに画像を取得する方法のコードです

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data) {
            Uri selectedImage = data.getData();
            String[] filePathColumn = { MediaStore.Images.Media.DATA };
            Cursor cursor = getContentResolver().query(selectedImage,filePathColumn, null, null, null);
            cursor.moveToFirst();
            int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
            String picturePath = cursor.getString(columnIndex);
            cursor.close();
            image = (ImageView) findViewById(R.id.yprofilepic);
            image.setImageBitmap(BitmapFactory.decodeFile(picturePath));

            Bitmap bitmap = BitmapFactory.decodeFile(picturePath);           
            ByteArrayOutputStream stream = new ByteArrayOutputStream();
            bitmap.compress(Bitmap.CompressFormat.PNG, 90, stream);
            byte [] byte_arr = stream.toByteArray();
            image_str = Base64.encodeBytes(byte_arr);

}

これは、アップロードする前にサーバーで写真を受信する方法です。

public function upload_picture(){
            $picture = (isset($_POST["picture"])) ? $_POST["picture"] : "";

             $picture = "";

                if(isset($_FILES) && isset($_FILES["picture"]))
                {
                    $picture_file = $_FILES["picture"];
                    if($picture_file["size"] > 0 && !empty($picture_file["name"]))
                    {
                        $extension = explode(".", $picture_file["name"]);
                        $extension = $extension[sizeof($extension)-1];
                        $file_extensions = array('jpg', 'jpeg', 'gif', 'bmp', 'png');
                        if(in_array($extension, $file_extensions))
                        {
                            $new_file = "assets/uploads/".md5(time().rand(0, 1000).$email).".".$extension;
                            if (move_uploaded_file($picture_file['tmp_name'], $new_file)) {
                                $image = new Image_Library();
                                $image->load($new_file);
                                $image->resizeToWidth(150);
                                $image->resizeToHeight(150);
                                $image->save($new_file);
                                $picture = SITE_ROOT.$new_file;
                            }
                        }
                    }
                }

                $model = new Users_Model();
                $status = $model->upload_picture($user_id, $picture);
                $response = array("operation" => $status);
                return new JSON($response);

            }

POSTリクエストを使用してAndroidからサーバーに画像を送信する最良の方法がわかりません。

EDIT私は実際にcoderzheavenメソッドを使用しましたが、うまくいきませんでした。これが私がそれを実装した方法です。

class uploadPic extends AsyncTask<String, String, String>{

        @Override
        protected String doInBackground(String... params) {
            // TODO Auto-generated method stub
            System.out.println("This is the string for the picture "+image_str);
            List<NameValuePair> p=new ArrayList<NameValuePair>();
            p.add(new BasicNameValuePair("username",user));
            JSONObject js=jsonParser.makeHttpRequest(url_id, "POST", p);

                 ArrayList<NameValuePair> nameValuePairs = new  ArrayList<NameValuePair>();

            nameValuePairs.add(new BasicNameValuePair("picture",image_str));
            try {
                nameValuePairs.add(new BasicNameValuePair("username", js.getString("user_id")));
            } catch (JSONException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }
            JSONObject j=jsonParser.makeHttpRequest(upload_pic, "POST", nameValuePairs);
            Log.d("Picture status", j.toString());
            return null;
        }

    }
4

2 に答える 2

0

画像ファイルではなく、画像の base 64 でエンコードされた文字列を送信することをお勧めします。このようにして、POST 要求を送信し、ファイルをサーバーに保存できます。

于 2013-07-29T11:32:05.493 に答える