简体   繁体   中英

Pass image byte array as json from android application to c# restful service

I need to upload an image from my android application by calling restful webservice in c#,But when i try it by adding byte[] to JSONObject,it converts the byte[] to string and the c# service throws Bad request("Error deserializing the Object.Element from namespace '' expected.Found text'[B@22b6cc7f'.

Android Code:
    Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.ttulips);
    ByteArrayOutputStream stream = new ByteArrayOutputStream();
    bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
    bitMapData = stream.toByteArray();

            JSONObject jsonParam = new JSONObject();
            try {
            jsonParam.put("IncomingFile",bitMapData);               
            jsonParam.put("FileName", "name.jpg");

            Log.d("Json",jsonParam+"");
} catch (JSONException e) {
            e.printStackTrace();
        }

The log of JSON request is coming as {"IncomingFile":"[B@22b67f","FileName":"name.jpg"}

Even tried converting the byte array to Base64 encoded byte array,but while adding base64 byte array to jsonobject,it is taken as string.

How should I solve this issue?Thanks in advance.

try this convert bitmap to string and pass this string to c# server

 if(fileUri1 != null) {
                bitmap1 = BitmapFactory.decodeFile(fileUri1.getPath(),
                        options);
                ByteArrayOutputStream baos1 = new ByteArrayOutputStream();
                if(bitmap1 != null) {
                    bitmap1.compress(Bitmap.CompressFormat.PNG, 50, baos1);
                    byte[] b1 = baos1.toByteArray();
                    bitmapstring1 = Base64.encodeToString(b1, 

                    Base64.DEFAULT);
                }
            }

webservice call:

 public class CallWebService extends AsyncTask<Void, Void, Void> {
    @Override
    protected Void doInBackground(Void... params) {
        // Call Webservice for Get Menus
        WebServiceCall webServiceCall = new WebServiceCall(); // Custom class for call webservice
        BitmapFactory.Options options = new BitmapFactory.Options();

        // downsizing image as it throws OutOfMemory Exception for larger
        // images
        options.inSampleSize = 8;


        parameters = new ArrayList<NameValuePair>();

        parameters.add(new BasicNameValuePair("Name",uname12));
        parameters.add(new BasicNameValuePair("Address", uaddr12));
        parameters.add(new BasicNameValuePair("Email", en));
        parameters.add(new BasicNameValuePair("Qualification", uquali12));
        parameters.add(new BasicNameValuePair("Phoneno", ucontactno12));
        parameters.add(new BasicNameValuePair("Appliedfor", uappfor12));
        parameters.add(new BasicNameValuePair("Image", bitmapstring));
        parameters.add(new BasicNameValuePair("Resumeimage", bitmapstring1));
        parameters.add(new BasicNameValuePair("Operation", "i"));
        Log.i("param::",parameters.toString());
        response = webServiceCall.makeServiceCall(mUrlWebServiceLogin, parameters);


        Log.d("ResponseLogin:", response);



        return null;
    }

    @Override
    protected void onPostExecute(Void result) {
        if (progressDialog.isShowing())
            progressDialog.dismiss();

        if(response.contains("\"success\"")){
            session.createLoginSession(uname12);
            Toast.makeText(getApplicationContext(),"Successfully inserted",Toast.LENGTH_SHORT).show();
            Intent in = new Intent(getApplicationContext(),InterView.class);
            in.putExtra("Name",uname12);

            startActivity(in);
            finish();


        }else{
            Toast.makeText(getApplicationContext(),"data not inserted",Toast.LENGTH_SHORT).show();
        }

    }

    @Override
    protected void onPreExecute() {
        progressDialog = new ProgressDialog(MainActivity.this);
        progressDialog.setMessage("Loading...");
        progressDialog.show();
        progressDialog.setCanceledOnTouchOutside(false);
        super.onPreExecute();
    }
}

在两边使用Base64 ,实际上将byte[]转换为String不是这里读取的主要问题

Try below for creating JSON:

 String json = "{\"IncomingFile\":\""+ new String(bytesEncoded) +"\",\"FileName\":\""+name.jpg+"\"}";

Where bytesEncoded should be Base64 encoded image.

Hope it helps!

这里的对象bitMapData是一个bytearray,必须转换为String然后你必须在Json对象中使用jsonParam.put("IncomingFile",new String(bitMapData));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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