gpt4 book ai didi

java - 带有 json 和图像处理的 asyctask

转载 作者:太空狗 更新时间:2023-10-29 15:11:32 25 4
gpt4 key购买 nike

你好,我目前无法确定在提取 url 后如何处理图像,因为异步只允许返回一次,有人有什么建议吗?

    /**
* After completing background task Dismiss the progress dialog
* **/
protected void onPostExecute(String json) {
// dismiss the dialog after getting song information

try {
JSONObject jsonObject = new JSONObject(json);
JSONArray jsonArray = jsonObject.getJSONArray("users");
JSONObject arrayElement_0 = jsonArray.getJSONObject(0);
uname = arrayElement_0.getString(TAG_USERNAME);
ptitle = arrayElement_0.getString(TAG_PROFILETITLE);
age = arrayElement_0.getString(TAG_AGE);
gender = arrayElement_0.getString(TAG_GENDER);
status = arrayElement_0.getString(TAG_STATUS);
small = arrayElement_0.getString(TAG_SMALL);

BitmapFactory.decodeStream((InputStream)new URL(small).getContent());

最佳答案

创建一个可以保存位图和其余数据的类?虽然将 Bitmap 保留在一个类中是一个坏主意(它们使用大量内存)。一般来说,最好单独处理位图。

关于java - 带有 json 和图像处理的 asyctask,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16137110/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com