我必须从网址下载图片。您推荐位图还是可绘制?不管怎样,我已经尝试了两次,但是这些都不起作用。你知道可能是什么问题吗? (我已经写了Internet和外部存储权限)。您将看到我通过JSON对象接收了URL,但是我正确地接收了该URL。

如果我想在Drawable元素中接收它:

protected Drawable getDrawable()
    {
        try{
            JSONObject jsonResponse = new JSONObject(content);
            String src=jsonResponse.getString(data);
            InputStream is = (InputStream)new URL(src).getContent();
            Drawable d=Drawable.createFromStream(is, "basket.png");
            return d;
        }
        catch(Exception e)
        {
            String err="This is the error: ";
            Log.e(err,e.getMessage());
            //e.printStackTrace();
            return null;
        }
    }


如果我想接收它的位图元素:

protected Bitmap getBitMap()
    {
        try{
            JSONObject jsonResponse = new JSONObject(content);
            String src=jsonResponse.getString(data);
            java.net.URL url = new java.net.URL(src);
            HttpURLConnection con=(HttpURLConnection)url.openConnection();
            con.setDoInput(true);
            con.connect();
            InputStream input=con.getInputStream();
            Bitmap myBitmap=BitmapFactory.decodeStream(input);
            return myBitmap;
        }
        catch(Exception e){
            String err="This is the error: ";
            Log.e(err,e.getMessage());
            //e.printStackTrace();
            return null;
        }
    }


这是我拥有ImageView的位置:

public class Accedido extends AppCompatActivity {

    ImageView imagen;
    Button ok;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_accedido);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        imagen=(ImageView)findViewById(R.id.Img);
        ok=(Button)findViewById(R.id.btnOk);
        ok.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Bitmap img=null;
                Ajax im=new Ajax();
                try {
                    String imagen = im.execute(MainActivity.IP_ADDRESS + "Imagen").get();
                    LeerConsulta lec = new LeerConsulta(imagen, "img");
                    //img=lec.getBitMap();
                    /*String res=lec.getContent();
                    String res2=lec.getData();
                    Toast.makeText(Accedido.this, "Content:"+res+"Data:"+res2, Toast.LENGTH_LONG).show();*/
                    img=lec.getBitMap();
                }
                catch(Exception exc) {
                    Toast.makeText(Accedido.this, exc.getMessage(), Toast.LENGTH_SHORT).show();
                }
                imagen.setImageBitmap(img);
            }
        });
    }


当我运行这些代码时,程序会抛出一个错误消息,提示println needs a message ...但是我从未在程序中编写过system.out.println

最佳答案

使用异步任务下载图像。

您可以参考此链接http://www.wingnity.com/blog/android-json-parsing-and-image-loading-tutorial/

10-07 17:09