0

私は最初のアプリケーションを構築していますが、これは初めてのことですが:

HttpURLConnection を使用して HTTP Get リクエストを送信しています。これが私のアクティビティコードです:

    import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class HttpGetServletActivity3 extends Activity implements
    OnClickListener {
Button button;
TextView outputText;

public static final String URL =
    "URL";

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    findViewsById();

    button.setOnClickListener(this);
}

private void findViewsById() {
    button = (Button) findViewById(R.id.button);
    outputText = (TextView) findViewById(R.id.outputTxt);
}

public void onClick(View view) {
    GetXMLTask task = new GetXMLTask();
    task.execute(new String[] { URL });
}

private class GetXMLTask extends AsyncTask<String, Void, String> {
    @Override
    protected String doInBackground(String... urls) {
        String output = null;
        for (String url : urls) {
            output = getOutputFromUrl(url);
        }
        return output;
    }

    private String getOutputFromUrl(String url) {
        StringBuffer output = new StringBuffer("");
        try {
            InputStream stream = getHttpConnection(url);
            BufferedReader buffer = new BufferedReader(
                    new InputStreamReader(stream));
            String s = "";
            while ((s = buffer.readLine()) != null)
                output.append(s);
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        return output.toString();
    }

    // Makes HttpURLConnection and returns InputStream
    private InputStream getHttpConnection(String urlString)
            throws IOException {
        InputStream stream = null;
        URL url = new URL(urlString);
        URLConnection connection = url.openConnection();

        try {
            HttpURLConnection httpConnection = (HttpURLConnection) connection;
            httpConnection.setRequestMethod("GET");
            httpConnection.connect();

            if (httpConnection.getResponseCode() == HttpURLConnection.HTTP_OK) {
                stream = httpConnection.getInputStream();
            }
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        return stream;
    }

    @Override
    protected void onPostExecute(String output) {
        outputText.setText(output);
    }
}
}

このコードは、Web サイトのソース コードを表示するのに役立ちます。動作しています !! しかし、ソース コードの特定の行が必要な場合はどうすればよいでしょうか。例のみ 60行目? 次の BuuferedReader ブロックを変更しようとしました:

BufferedReader buffer = new BufferedReader(
                    new InputStreamReader(stream));
            String s = "";
            while ((s = buffer.readLine()) != null)
                output.append(s);

そして、代わりに次の LineReader を書きましたが、機能しませんでした:

LineNumberReader lnr = new LineNumberReader(new InputStreamReader(stream));   
            String s = "";
            if (lnr.getLineNumber() == 60){
                output.append(s);
            }

これはそれを行う方法ですか、それとも何が欠けていますか?

4

2 に答える 2

0

境界 (つまり と ) の間にあることがわかっているコードの一部を取得しようとしている場合は、次のようにすることができます。

Stream を単一の文字列に変換し (結果と呼びます)、次のようにします。

String start = "<body>", end = "</body>";
result = result.substring(result.indexOf(start) + start.length(), result.indexOf(end));
于 2013-05-13T14:38:36.540 に答える