开发者社区> 问答> 正文

使用picasso加载string变量加载不出来,换成url直接敲上去就可以,这是什么情况?

package com.example.zz670.mypic;

import android.os.Bundle;
 import android.support.v7.app.AppCompatActivity;
 import android.util.Log;
 import android.widget.ImageView;
 import android.widget.LinearLayout;

import com.squareup.picasso.Picasso;

import org.json.JSONArray;
 import org.json.JSONObject;

import java.io.BufferedInputStream;
 import java.io.BufferedReader;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.InputStreamReader;
 import java.net.HttpURLConnection;
 import java.net.URL;

public class MainActivity extends AppCompatActivity {
 ImageView imageView;
 LinearLayout linearLayout;
 ImageView[] imageViews = new ImageView[10];
 static String gURL;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    linearLayout = (LinearLayout) findViewById(R.id.id_gallery);

    new work().start();
    try {
        Thread.sleep(1000);
        for (int i = 0; i < imageViews.length; i++) {

            imageView = new ImageView(this);
            try {
                // final Bitmap bitmap = getBitmap(gURL[i]);
                //Log.e("ceshi","4-"+i);
                //imageView.setImageBitmap(bitmap);
                Log.e("ceshi","5-"+i);
                Log.e("ceshi",gURL);
                Picasso.with(MainActivity.this).load(gURL).into(imageView);

                                    //就在这里,gURL字符串已经赋值为"xxxxx.jpg",但是不能加载,不报错
                                    //但是直接把"xxxxx.jpg"敲上去就可以加载出来
                                    //已经声明网络权限


                linearLayout.addView(imageView);
            } catch (Exception e) {
            }
        }
    } catch (InterruptedException e) {
        e.printStackTrace();
    }



}

private class work extends Thread {
    InputStream inputStream = null;
    HttpURLConnection urlConnection = null;
    String response;

    //Bitmap bitmap;

    public void run() {
        try {
            //Log.e("ceshi","1");

            URL url = new URL("http://gank.io/api/random/data/福利/1");
            urlConnection = (HttpURLConnection) url.openConnection();
            urlConnection.setConnectTimeout(5000);
            urlConnection.setRequestMethod("GET");
            int statusCode = urlConnection.getResponseCode();
            if (statusCode == 200) {
                inputStream = new BufferedInputStream(urlConnection.getInputStream());
                response = inputStream2String(inputStream);

            }

            //Log.e("ceshi","2");

            if (!response.isEmpty()) {
                try {
                    JSONObject jsonObject1 = new JSONObject(response);
                    // Log.e("Json", response);
                    JSONArray jsonArray = jsonObject1.getJSONArray("results");
                    for (int i = 0; i < jsonArray.length(); i++) {
                        JSONObject jsonObject = (JSONObject) jsonArray.get(i);
                        //取出name
                        String jarray1 = jsonObject.getString("url");


                            gURL = "\""+jarray1+"\"";

                            //Log.e("Json", jarray1.toString());
                             Log.e("Json", gURL);
                    }

                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }



        //Log.e("ceshi","3");


    }

   public  String inputStream2String(InputStream is) throws IOException {
        BufferedReader in = new BufferedReader(new InputStreamReader(is));
        StringBuffer buffer = new StringBuffer();
        String line = "";
        while ((line = in.readLine()) != null) {
            buffer.append(line);
        }
        return buffer.toString();
    }


}

 }

完全不理解啊!

展开
收起
爵霸 2016-03-03 15:39:01 2556 0
1 条回答
写回答
取消 提交回答
  • gURL = """+jarray1+"""; 为何要在url的前后加上双引号?? url都变了,肯定加载不出来啊

    2019-07-17 18:51:31
    赞同 展开评论 打赏
问答分类:
API
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载

相关实验场景

更多