android中的图像存储

时间:2014-04-30 20:03:04

标签: java android mysql sql performance

我已将图像添加到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; 值?

0 个答案:

没有答案