1

私はプログラミングのアンドロイド初心者ですが、いくつかのプログラムの助けを借りて基本を学ぶことができます。arduino のイーサネット シールドに対して基本的な http get リクエストを実行したいと思います。

このために、いくつかのコードを見つけましたが、動作させることができません。いくつかのページから試したコードを使用して、常に getResponse 部分に行き詰まっています。

読み取り可能なコードを提供する次のページを見つけました: How to work with an image using url in android?

今、私は以下を作成しました: ボタンを押して、URL にアクセスします:


package adhttpget.test;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URI;
import java.net.URL;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Toast;

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 AdhttpgetActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }


public void pushbutton1(View view) {
    Toast.makeText(getBaseContext(), "button press", Toast.LENGTH_SHORT).show();
            Log.e("button", "pressed");

             URL connectURL = new URL("http://192.168.0.48/?out=13&status=2");
             HttpURLConnection conn = (HttpURLConnection)connectURL.openConnection(); 

             // do some setup
             conn.setDoInput(true); 
             conn.setDoOutput(true); 
             conn.setUseCaches(false); 
             conn.setRequestMethod("GET"); 

             // connect and flush the request out
             conn.connect();
             conn.getOutputStream().flush();

             // now fetch the results
             String response = getResponse(conn);    // <-- THIS IS MY PROBLEM



}
private String getResponseOrig(HttpURLConnection conn)
{
    InputStream is = null;
    try 
    {
        is = conn.getInputStream(); 
        // scoop up the reply from the server
        int ch; 
        StringBuffer sb = new StringBuffer(); 
        while( ( ch = is.read() ) != -1 ) { 
            sb.append( (char)ch ); 
        } 
        return sb.toString(); 
    }
    catch(Exception e)
    {
       Log.e("http", "biffed it getting HTTPResponse");
    }
    finally 
    {
        try {
        if (is != null)
            is.close();
        } catch (Exception e) {}
    }

    return "";
}

}

コードを正しく書く方法を学ぶための情報はどこにありますか? それとも、私がそこから学ぶことができるように、ある種のヒントで答えをたまたま持っていますか?

4

1 に答える 1

1

InputStream を渡す BufferedReader を作成する必要があります。その後、文字列を読み取ることができます

private static String convertStreamToString(InputStream is) {
    BufferedReader reader = new BufferedReader(new InputStreamReader(is));
    StringBuilder sb = new StringBuilder();

    String line = null;
    try {
        while ((line = reader.readLine()) != null) {
            sb.append(line + "\n");
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            is.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return sb.toString();
}

次に、アプリを改善するため、スレッド UI から分離されたスレッド (スレッド、AsyncTask、ハンドラーなどを使用) を使用して接続 (またはファイルの読み取り/書き込み) を行うことをお勧めします。

http://developer.android.com/intl/es/guide/components/processes-and-threads.html

于 2012-09-10T21:10:12.460 に答える