我需要在我的Android应用程序中从webservice访问Image。我写了webservice,它将图像转换为字符串。现在我需要在Listview中访问该图像。我需要在android中访问哪种格式。 请做好 谢谢。
答案 0 :(得分:0)
然后用base64库解码它。用原始肥皂获得你的肥皂结果
SoapPrimitive resultsRequestSOAP = (SoapPrimitive) envelope.getResponse();
String result = resultsRequestSOAP.toString();
if (result != "") {
byte[] bloc = Base64.decode(result, Base64.DEFAULT);
Bitmap bmp = BitmapFactory.decodeByteArray(bloc,0,bloc.length);
}