第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

打上斷點(diǎn) 出現(xiàn)Client not ready yet..???

http://img1.sycdn.imooc.com//5690b5300001feb210840644.jpg

請(qǐng)問(wèn)如何出現(xiàn)老師的界面??!

http://img1.sycdn.imooc.com//5690b59f00010c1e07400191.jpg


正在回答

6 回答

可以用Log.e(“aa--ff”,傳的值);

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

qq_彩_0 提問(wèn)者

謝謝你
2016-01-10 回復(fù) 有任何疑惑可以回復(fù)我~
#2

qq_彩_0 提問(wèn)者

非常感謝!
2016-01-11 回復(fù) 有任何疑惑可以回復(fù)我~
<html>
<html>


0 回復(fù) 有任何疑惑可以回復(fù)我~

到底怎么解決的,重新安裝軟件嗎?求指教

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

水淼1

重啟as
2016-06-15 回復(fù) 有任何疑惑可以回復(fù)我~
#2

qq_彩_0 提問(wèn)者

安裝和設(shè)置有問(wèn)題,重新解決一下就可以啦
2016-11-15 回復(fù) 有任何疑惑可以回復(fù)我~

問(wèn)題解決了,軟件的問(wèn)題,代碼正確!

0 回復(fù) 有任何疑惑可以回復(fù)我~

http://img1.sycdn.imooc.com//56923fd30001821c13330649.jpg

出現(xiàn)這樣的情況 RESTART重復(fù)相同的問(wèn)題啊

0 回復(fù) 有任何疑惑可以回復(fù)我~

http://img1.sycdn.imooc.com//56923d480001c23502910274.jpg

打上斷點(diǎn)后出現(xiàn)后。輸入Log.e("aa--ff","getJsonData");?????端口又出現(xiàn)問(wèn)題了,請(qǐng)問(wèn)怎么解決,謝謝

最主要的這一步怎么整體解決啊,謝謝?。。。?!

http://img1.sycdn.imooc.com//56923c720001724613080246.jpg

package com.yc.asynctask;

import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.widget.ListView;

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

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;

public class MainActivity extends Activity {
? ?private ListView mListView;
? ?private static String URL = "http://idcbgp.cn/api/teacher?type=4&num=30";

? ?@Override
? ?protected void onCreate(Bundle savedInstanceState) {
? ? ? ?super.onCreate(savedInstanceState);
? ? ? ?setContentView(R.layout.activity_main);

? ? ? ?mListView = (ListView) findViewById(R.id.lv_main);
? ? ? ?new NewsAsyncTask().execute(URL);
? ?}


? ?private List<NewsBean> getJsonData(String url) {
? ? ? ?List<NewsBean> newsBeanList = new ArrayList<>();
? ? ? ?try {
? ? ? ? ? ?String jsonString = readStream(new URL(url).openStream());
? ? ? ? ? ?JSONObject jsonObject;
? ? ? ? ? ?NewsBean newsBean;
? ? ? ? ? ?try {
? ? ? ? ? ? ? ?jsonObject = new JSONObject(jsonString);
? ? ? ? ? ? ? ?JSONArray jsonArray = jsonObject.getJSONArray("data");

? ? ? ? ? ? ? ?for(int i = 0; i <jsonArray.length(); i++){
? ? ? ? ? ? ? ? ? ?jsonObject = jsonArray.getJSONObject(i);
? ? ? ? ? ? ? ? ? ?newsBean = new NewsBean();
? ? ? ? ? ? ? ? ? ?//從jsonObject中得到每個(gè)元素?cái)?shù)據(jù)給newsBean
? ? ? ? ? ? ? ? ? ?newsBean.newsIconUrl = jsonObject.getString("picSmall");
? ? ? ? ? ? ? ? ? ?newsBean.newsTitle = jsonObject.getString("name");
? ? ? ? ? ? ? ? ? ?newsBean.newsContent = jsonObject.getString("description");
? ? ? ? ? ? ? ? ? ?newsBeanList.add(newsBean);
? ? ? ? ? ? ? ?}
? ? ? ? ? ?} catch (JSONException e) {
? ? ? ? ? ? ? ?e.printStackTrace();
? ? ? ? ? ?}

? ? ? ?} catch (IOException e) {
? ? ? ? ? ?e.printStackTrace();
? ? ? ?}
? ? ? ?Log.e("aa--ff","getJsonData");
? ? ? ?return newsBeanList;
? ?}

? ?private String readStream(InputStream is){
? ? ? ?InputStreamReader isr;
? ? ? ?String result = "";
? ? ? ?try {
? ? ? ? ? ?String line = "";
? ? ? ? ? ?isr = new InputStreamReader(is, "utf-8");
? ? ? ? ? ?// 字節(jié)流轉(zhuǎn)化為字符流
? ? ? ? ? ?BufferedReader br = new BufferedReader(isr);
? ? ? ? ? ?while ((line = br.readLine()) != null){
? ? ? ? ? ? ? ?result += line;
? ? ? ? ? ?}
? ? ? ?} catch (UnsupportedEncodingException e) {
? ? ? ? ? ?e.printStackTrace();
? ? ? ?} catch (IOException e) {
? ? ? ? ? ?e.printStackTrace();
? ? ? ?}
? ? ? ?return result;
? ?}

? ?class NewsAsyncTask extends AsyncTask<String, Void, List<NewsBean>>{
? ? ? ?@Override
? ? ? ?protected List<NewsBean> doInBackground(String... params) {
? ? ? ? ? ?return getJsonData(params[0]);
? ? ? ?}

? ?}
}

0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消
Android必學(xué)-異步加載
  • 參與學(xué)習(xí)       50616    人
  • 解答問(wèn)題       333    個(gè)

了解Android中的異步加載處理方法,這是面試問(wèn)的最多的知識(shí)點(diǎn)

進(jìn)入課程

打上斷點(diǎn) 出現(xiàn)Client not ready yet..???

我要回答 關(guān)注問(wèn)題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)