0

コードの何が問題なのかを特定するのに苦労しています。私はこの部分で立ち往生しており、デバッガーはどういうわけか不可解です。同封のコードを参照してください: マニフェスト ファイルには、

<uses-permission android:name="android.permission.INTERNET"/>

次は開始のコードです。logcat ですばやく識別できるように、2 つの try/catch 例外を system.out の「Exception 1」と「Exception 2」でマークしました。

package com.example.httpexample;

import android.os.Bundle;
import android.widget.TextView;
import android.app.Activity;

public class HttpExample extends Activity {

TextView httpStuff;


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

    httpStuff = (TextView) findViewById(R.id.tvHttp);
    GetMethodEx test = new GetMethodEx();
    String returned;
    try {
        returned = test.getInternetData();
        httpStuff.setText(returned);
    } catch (Exception e) {
        System.out.println("Exception 1");
        e.printStackTrace();
    }
  }
}

コードの 2 番目のブロックは、実際の http クラスです。

package com.example.httpexample;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URI;

import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;

public class GetMethodEx {

public String getInternetData() throws Exception{
    BufferedReader in = null;
    String data = null;
    try{
        HttpClient client = new DefaultHttpClient();
        URI website = new URI("http://google.com");
        HttpGet request = new HttpGet();
        request.setURI(website);
        HttpResponse response = client.execute(request);
        in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
        StringBuffer sb = new StringBuffer("");
        String l = "";
        String nl = System.getProperty("line.separator");
        while ((l = in.readLine()) !=null){
            sb.append(l + nl);
        }
        in.close();
        data = sb.toString();
        return data;
    } finally {
        if (in != null){
            try{
                in.close();
                return data;
            } catch (Exception e) {
                System.out.println("Exception 2");
                e.printStackTrace();
            }
        }
    }
  }
}

私の問題は、デバッガーを使用して問題が何であるかを特定できないことです。間違った場所を探しているのですか?そこにもっと情報がありますか? これは、例外の直後に取得した logcat の出力の一部ですが、これを解釈するのが難しいか、別の場所に詳細情報があるかどうかはわかりません。事前に助けてくれてありがとう!

07-19 21:37:30.916: I/System.out(4987): Exception 1
07-19 21:37:30.916: W/System.err(4987): android.os.NetworkOnMainThreadException
07-19 21:37:30.936: W/System.err(4987):     at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1117)
07-19 21:37:30.936: W/System.err(4987):     at java.net.InetAddress.lookupHostByName(InetAddress.java:385)
07-19 21:37:30.936: W/System.err(4987):     at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
07-19 21:37:30.947: W/System.err(4987):     at java.net.InetAddress.getAllByName(InetAddress.java:214)
07-19 21:37:30.947: W/System.err(4987):     at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:137)
07-19 21:37:30.956: W/System.err(4987):     at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)
07-19 21:37:30.966: W/System.err(4987):     at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)
07-19 21:37:30.966: W/System.err(4987):     at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:360)
07-19 21:37:30.966: W/System.err(4987):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)
07-19 21:37:30.976: W/System.err(4987):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)
07-19 21:37:30.976: W/System.err(4987):     at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:465)
07-19 21:37:30.986: W/System.err(4987):     at com.example.httpexample.GetMethodEx.getInternetData(GetMethodEx.java:22)
07-19 21:37:30.986: W/System.err(4987):     at com.example.httpexample.HttpExample.onCreate(HttpExample.java:21)
07-19 21:37:30.996: W/System.err(4987):     at android.app.Activity.performCreate(Activity.java:5104)
07-19 21:37:30.996: W/System.err(4987):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
..
..
.. and more
4

1 に答える 1

0

これは、取得している例外に関する記事です。

コードに Log.d(String, String) 行を追加して、各ステップをたどり、行き詰まっている場所を正確に確認することもできます。最初の引数はタグで、2 番目の引数は定義した文字列で、そのコード行に到達したときに LogCat が吐き出すものです。

とても助かります。私は記事があなたの答えを持っているに違いない.

編集してdeveloper docを追加すると、メイン スレッドで Network アクションを実行していることが原因のようです。

修正のための編集 #2 : TechBlogIsTech 記事

開発者ドキュメントの AsyncTask の詳細については、#3 を編集してください。

LogCatデバッグログ書き込みの詳細については、最終編集

于 2013-07-19T22:06:57.257 に答える