http リクエストを送信し、そのリクエストから文字列を取得したいと思います。
私は現在このコードを使用していますが、私の URL が何であれ、常に null になります。問題は何ですか?
try { // 目的のページ URL の URL を作成します URL url = new URL("http://hostname:80/index.html");
// Read all the text returned by the server BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream())); String str; while ((str = in.readLine()) != null) { // str is one line of text; readLine() strips the newline character(s) } in.close(); } catch (MalformedURLException e) { } catch (IOException e) { }