使用json从PHP-MySql服务器到Android获取图像
作者:互联网
我正在开发一个从php服务器下载图像并在图像视图中显示图像的应用程序.但是当我从php页面接收图像时
if (!empty($result)) {
if (mysql_num_rows($result) > 0) {
$result = mysql_fetch_array($result);
$user = array();
$user["image"] = base64_encode($result["image"]);
$response["success"] = 1;
$response["image_table"] = array();
array_push($response["image_table"], $user);
echo json_encode($response);
} else {
$response["success"] = 0;
$response["message"] = "No Image found";
echo json_encode($response);
}
它给了我这样的json响应
03-30 04:43:44.013: D/Image:(2770): {"success":1,"image_table": [{"image":"\/9j\/4VeRRXhpZgAASUkqAAgAAAAMAAABBAABAAAA..........
03-30 04:43:44.253: D/skia(2770): --- decoder->decode returned false
我正在像这样将图像字符串解码为位图….
json= jsonParser.makeHttpRequest(url_img_address, "GET", params);
Log.d("Image: ", json.toString());
try {
int success = json.getInt(TAG_SUCCESS);
if (success == 1) {
address = json.getJSONArray(TAG_IMAGE_TABLE);
for (int i = 0; i < address.length(); i++) {
JSONObject c = address.getJSONObject(i);
image = c.getString(TAG_IMAGE);
byte[] dwimage = Base64.decode(image.getBytes());
System.out.println(dwimage);
bmp = BitmapFactory.decodeByteArray(dwimage, 0, dwimage.length);
}
} else {
}
} catch (JSONException | IOException e) {
e.printStackTrace();
}
我正在使用这个bm来onotherclass,将bmp设置为imageview
ivProperty.setImageBitmap(bmp);
但是它什么也没显示……我的异步任务活动尚未完成并且正在继续运行…
我的问题是如何将bmp显示到imageview以及为什么我的asyncktask未完成…….. thx提前….
解决方法:
您需要使用使用base64解码的二进制解码,并且您将获得图像作为位图.
byte[] decodedString = Base64.decode(encodedImage, Base64.DEFAULT);
Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
标签:android-bitmap,android,php,mysql,json 来源: https://codeday.me/bug/20191013/1910342.html