1

HTML を読み取って文字列に格納する非常に基本的なアプリケーションを作成することを目指しています。Web サイトのソースからの 1 行だけに興味があります。これを示唆するトピックを見つけました:

String bodyHtml = "null";
            try {
                String myUri = "http://www.spring8.or.jp/ext/ja/status/text.html";
                HttpClient httpClient = new DefaultHttpClient();
                HttpGet get = new HttpGet(myUri);

                HttpResponse response = httpClient.execute(get);

                // Build up result
                bodyHtml = EntityUtils.toString(response.getEntity());
            } catch (Exception e) {

            }

            url.setText(bodyHtml);

URLが私のテキストビューです。私が知っている限り、マニフェストのアクセス許可を正しく設定しました。

ただし、このコードを携帯電話とエミュレーターで実行すると、まったく機能しないようです。私は何も得ません。何か不足していますか?

ありがとうございました

4

3 に答える 3

0

EntityUtils の代わりにこれを試してください

BufferedReader rd = new BufferedReader(new InputStreamReader(
        response.getEntity().getContent()));
String line = "";
String newLine = "";
while ((line = rd.readLine()) != null) {
    newLine = newLine.concat(line);
}
System.out.println(newLine);
于 2012-06-28T08:50:41.030 に答える
0

の execute メソッドに、以下に示すようHttpClientに a も追加しHttpContextます。

HttpContext localContext = new BasicHttpContext();
HttpResponse response = httpClient.execute(get, localContext);

また、次を使用しますBufferedReader

final BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));

うまくいかない場合は、インターネット接続に問題がある可能性があります。ところで、android.permission.INTERNET パーミッションを忘れないでください。

于 2012-06-28T08:51:13.380 に答える
0

これを試して、

以下のメソッドを呼び出して HTML コンテンツをダウンロードし、パラメーターに URL を渡します。

private void downloadText(String urlStr) {
        progressDialog = ProgressDialog.show(this, "", 
                "Download Text from " + urlStr);
        final String url = urlStr;

        new Thread () {
            public void run() {
                int BUFFER_SIZE = 2000;
                InputStream in = null;
                Message msg = Message.obtain();
                msg.what=1;
                try {
                    in = openHttpConnection(url);

                    InputStreamReader isr = new InputStreamReader(in);
                    int charRead;
                      text = "";
                      char[] inputBuffer = new char[BUFFER_SIZE];

                          while ((charRead = isr.read(inputBuffer))>0)
                          {                    
                              String readString = 
                                  String.copyValueOf(inputBuffer, 0, charRead);                    
                              text += readString;
                              inputBuffer = new char[BUFFER_SIZE];
                          }
                         Bundle b = new Bundle();
                            b.putString("text", text);
                            msg.setData(b);
                          in.close();

                }catch (IOException e2) {
                    e2.printStackTrace();
                }
                messageHandler.sendMessage(msg);
            }
        }.start();    
    }

これは、InputStream オブジェクトを返すヘルパー メソッドです。

private InputStream openHttpConnection(String urlStr) {
    InputStream in = null;
    int resCode = -1;

    try {
        URL url = new URL(urlStr);
        URLConnection urlConn = url.openConnection();

        if (!(urlConn instanceof HttpURLConnection)) {
            throw new IOException ("URL is not an Http URL");
        }

        HttpURLConnection httpConn = (HttpURLConnection)urlConn;
        httpConn.setAllowUserInteraction(false);
    httpConn.setInstanceFollowRedirects(true);
    httpConn.setRequestMethod("GET");
    httpConn.connect(); 

    resCode = httpConn.getResponseCode();                 
    if (resCode == HttpURLConnection.HTTP_OK) {
        in = httpConn.getInputStream();                                 
    }         
    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
    return in;
}

そして、ハンドラーを使用して文字列を textView に表示します。

private Handler messageHandler = new Handler() {

        public void handleMessage(Message msg) {
            super.handleMessage(msg);
            switch (msg.what) {

            case 1:
                TextView text = (TextView) findViewById(R.id.textview01);
                text.setText(msg.getData().getString("text"));
                break;
            }
            progressDialog.dismiss();
        }
    };

マニフェストでINTERNET権限を提供します。

于 2012-06-28T08:54:17.897 に答える