我已将图像添加到MultiPartEntity,如
MultiPartEntity multipart=new MultiPartEntity();
multipart.addPart("imagePath",new InputStreamBody(getContentResolver().openInputStream(Uri.parse("file://"+imagePath)),imageName+".jpg"));
httppost.setEntity(multipart);
response = httpclient.execute(httppost);
现在我必须从服务器端获取" imagePath" 值并将其存储到Mysql中。我正在使用Jersey.how我可以获得" imagePath& #34; 值?