2014-01-31 45 views
0

我試圖將圖像發送到從android.Here我們的asp.net web服務是我的示例代碼:無法爲Base64字符串發送時,上傳圖片

//獲取圖像從畫廊

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]); 
picturePath = cursor.getString(columnIndex); 

cursor.close(); 

/* BitmapFactory.Options options = new BitmapFactory.Options(); 
options.inSampleSize = 4;*/ 

thumbnail = (BitmapFactory.decodeFile(picturePath)); 
img_photo.setImageBitmap(thumbnail); 

//轉換成IMAG的base64串

img_photo.buildDrawingCache(); 
     Bitmap bm = img_photo.getDrawingCache(); 

     ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
     bm.compress(Bitmap.CompressFormat.PNG, 100, baos); // bm is the bitmap 

     byte[] photo = baos.toByteArray(); 
     System.out.println("this is byte array" + bytearray); 

     String temp_base =Base64.encodeToString(photo,Base64.NO_WRAP); 

//調用web服務

SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); 

request.addProperty("CarID", SellCarDetailView.sellcardetails_carid); 
request.addProperty("pic",temp_base); 
     System.out.println("this is piccontent" +temp_base); 
try { 

      SoapSerializationEnvelope soapEnvelope = new SoapSerializationEnvelope(
        SoapEnvelope.VER11); 
soapEnvelope.encodingStyle = SoapEnvelope.ENC; 
      // new MarshalBase64().register(soapEnvelope); 
      soapEnvelope.dotNet = true; 
      soapEnvelope.setOutputSoapObject(request); 
      HttpTransportSE aht = new HttpTransportSE(URL); 
      //AndroidHttpTransport aht = new AndroidHttpTransport(URL); 
      aht.call(SOAP_ACTION, soapEnvelope); 

      // SoapObject response = (SoapObject)envelope.getResponse(); 
      SoapPrimitive response = (SoapPrimitive) soapEnvelope.getResponse(); 
      String temp3 = response.toString(); 

      Log.v("TAG", temp3); 

     } catch (Exception e) { 
      e.printStackTrace(); 
     } 

我在Web服務端收到「無效參數」。 // Asp.net代碼

[ScriptMethod(UseHttpGet = false, ResponseFormat = ResponseFormat.Xml)] 
[WebMethod(EnableSession = true)] 
public string UploadPictureByCarIDFromAndroid(string CarID, string make, string model, string year, string UserID, string pic, string AuthenticationID, string CustomerID, string SessionID) 
{ 

    string bStatus = "Failed"; 
    MobileBL objMobile = new MobileBL(); 
    UsedCarsInfo objCarPicInfo = new UsedCarsInfo(); 

    try 
    { 
        try 
      { 
       if (AuthenticationID == ConfigurationManager.AppSettings["AppleID"].ToString()) 
       { 
        objCarPicInfo.Carid = Convert.ToInt32(CarID); 
        byte[] picContent = Convert.FromBase64String(pic); 
        // byte[] picContent = Base64.decode(pic); 
        MemoryStream ms = new MemoryStream(picContent, 0,picContent.Length); // getting "invalid length" 
        ms.Write(picContent, 0, picContent.Length); 
        Bitmap oBitmap1 = new Bitmap(ms);// getting "invalid length" error here 
        // System.Drawing.Image image = System.Drawing.Image.FromStream(ms, true); 




       } 
      } 
      catch (Exception ex) 
      { 

      } 

    } 
    catch (Exception ex) 
    { 
    } 


    return bStatus; 
} 

發送image.Any幫助時,高度讚賞我得到「長度無效」的錯誤。

+0

嗨,編碼是題外話這裏,你會更好使用的StackOverflow和標記它的 「Android」 的 「Java」 和 「ASP」。祝你好運。 – RossC

回答

0

你可以使用httpmime庫上傳任何文件(圖像,音頻,視頻等..)請參考下面的代碼。

HttpClient httpClient = new DefaultHttpClient(); 
HttpContext localContext = new BasicHttpContext(); 
HttpPost postRequest = new HttpPost(your url); 
MultipartEntity reqEntity = new MultipartEntity(
     HttpMultipartMode.BROWSER_COMPATIBLE); 

try { 




    File file = new File(filename); 
    FileBody fileBody = new FileBody(file); 
    reqEntity.addPart("video_file", fileBody); 

    postRequest.setEntity(reqEntity); 
    HttpResponse response = httpClient.execute(postRequest, 
      localContext); 
    HttpEntity entity = response.getEntity(); 

    if (entity != null) { 
     // entity.consumeContent(); 
     BufferedReader rd = new BufferedReader(new InputStreamReader(
       entity.getContent())); 
     // Log.e("response", "response " + rd.toString()); 
     String line; 
     String result1 = ""; 
     while ((line = rd.readLine()) != null) { 
      result1 = result1 + line; 
      // Log.e("result", "line " + line); 




} 
     // Log.e("result", "is " + result1); 
     return result1; 
    } 
} catch (Exception e) { 
    return "Exception"; 
} 
return ""; 

}

+0

謝謝@Cheerag – mamatha