zz670384114 2016-04-22 07:57 采纳率: 100%
浏览 1687
已采纳

用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();
    }


}

}

  • 写回答

1条回答 默认 最新

  • zcys12173 2016-04-22 08:07
    关注

    gURL = "\""+jarray1+"\""; 为何要在url的前后加上双引号?? url都变了,肯定加载不出来啊

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。