简体   繁体   中英

How to capture an image and store on server using android

I am trying to upload an image from an Android device to a remote server. So far I have the following code but the image being saved on the remote server is always zero bytes.

     HttpURLConnection conn;

     String serverpath = "http://110.172.27.47:9499";
     String MREPORTER_SERVLET_PATH="/mreporter/servlet/MReporterServlet";


     url = serverpath + MREPORTER_SERVLET_PATH;

     try
     {
         URL url = new URL( serverpath + MREPORTER_SERVLET_PATH );
         conn = (HttpURLConnection) url.openConnection();
         conn.setDoInput(true);
         conn.setDoOutput(true);
         conn.setUseCaches(false);

         conn.setRequestMethod("POST");

         conn.setRequestProperty("Connection", "Keep-Alive"); 
         conn.setRequestProperty("Content-Type", "multipart/form-data;boundary="+ "*****" );

         conn.setRequestProperty(USER_NAME_REQUEST_PARAMETER, "parth");
         conn.setRequestProperty(EVENT_NAME_REQUEST_PARAMETER, "null" );
         conn.setRequestProperty(CAMERAID_REQUEST_PARAMETER, "1");
         conn.setRequestProperty(ACTION_MODE_PARAMETER, "POST_DATA_ACTION" );

         DataOutputStream dos = new DataOutputStream(conn.getOutputStream());

         Log.i("Response", conn.getResponseCode() + "" );

         int response = conn.getResponseCode();

         if ( response == 200 )
         {
             Log.i("size",data.length + "");

             if ( data.length > 0 )
             {
                 dos.write(data);
                 Log.i("200","OK" );
             }
             else
             {
                 Log.i( "Error", response +  "" );
             }
         }

I review thw code and get the solution here it works surely.

     HttpURLConnection conn;
     String serverpath = "http://110.172.27.47:9499";
     String MREPORTER_SERVLET_PATH="/mreporter/servlet/MReporterServlet";


     url = serverpath + MREPORTER_SERVLET_PATH;

     try
     {
         URL url = new URL( serverpath + MREPORTER_SERVLET_PATH );
         conn = (HttpURLConnection) url.openConnection();
         conn.setDoInput(true);
         conn.setDoOutput(true);
         conn.setUseCaches(false);

         conn.setRequestMethod("POST");

         conn.setRequestProperty("Connection", "Keep-Alive"); 
         conn.setRequestProperty("Content-Type", "multipart/form-data;boundary="+ "*****" );

         conn.setRequestProperty(USER_NAME_REQUEST_PARAMETER, "parth");
         conn.setRequestProperty(EVENT_NAME_REQUEST_PARAMETER, "null" );
         conn.setRequestProperty(CAMERAID_REQUEST_PARAMETER, "1");
         conn.setRequestProperty(ACTION_MODE_PARAMETER, "POST_DATA_ACTION" );

         DataOutputStream dos = new DataOutputStream(conn.getOutputStream());

         Log.i("Response", conn.getResponseCode() + "" );

         int response = conn.getResponseCode();
         dos.write(data);
}

我认为这个例子可以帮助您。

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